BillyBoyo wrote:Good spot enrico!
Ok, this one wasn't so tricky
Are there working examples at your site? If not, there should be some linkedit examples in your documentation. You can also try google once you know what you are looking for, you might get some other information.
If you had posted the Link Map rather than just those messages, it would also have helped
Thanks Enrico! I had to convert my LOAD library to a library dataset and then i had the STUB be a SYSIN versus a SYSLIN and that got rid of that problem
.
But now I notice when in the COBOL code, I try to call 'MQCONN' regardless of whether the Queue Manager exists or not, it doesn't fail. I want try to have it where it successfully is able to connect.
ADD MQPMO-FAIL-IF-QUIESCING MQPMO-NO-SYNCPOINT
GIVING MQPMO-OPTIONS
END-ADD
CALL 'MQCONN' USING NAME
HCONN
COMPLETION-CODE
CON-REASON
END-CALL
I display the HCONN, COMPLETION-CODE and CON-REASON but they're all 000000. Any suggestions?