View previous topic :: View next topic
|
Author |
Message |
Sergey Tal
New User
Joined: 21 Jul 2022 Posts: 8 Location: Israel
|
|
|
|
Hello dear all,
APPLY CHECK job gives me RC=8 and message "GIM41901E The global zone sysmod entry for <PTF> indicates that it contains a ++JCLIN MCS. However, there is no ++JCLIN for <PTF> in the SMPPTS data set". According to IBM docs, rejected problematic PTF and received again. Again the same. Maybe, somebody already faced similar problem? |
|
Back to top |
|
|
Sergey Tal
New User
Joined: 21 Jul 2022 Posts: 8 Location: Israel
|
|
|
|
Ok, already found an answer. Maybe would be useful for somebody. SMPPTS data set for z/OS was full, thus SMPPTS1 and SMPPTS2 were created. DD for all 3 datasets was with concatination:
Code: |
//SMPPTS DD DSN=****.SMPPTS
// DSN=****.SMPPTS1
// DSN=****.SMPPTS2
|
It's a mistake. Must be:
Code: |
//SMPPTS DD DSN=****.SMPPTS
//SMPPTS1 DD DSN=****.SMPPTS1
//SMPPTS2 DD DSN=****.SMPPTS2
|
without concatination. |
|
Back to top |
|
|
|