Finding the MSGF that a message resides in

Frosty the Coder

Legendary Poster
Listers - Happy 2012!
grin.gif


We are seeing inquiry message RNQ1021 w/in msgq QSYSOPR.

Other than diplaying ALL messages for ALL message files,
is there a way to find which message file this is in?
(It's NOT in qcpfmsg)

Thank you!
 
You can try using the following command.
WRKMSGF MSGF(*LIBL/QR*)

The Message IDs and Message Files have some naming consistencies.

If not, use WRKMSGF MSGF(*LIBL/*ALL) and make an educated guess which message file has the ID you are looking for.

Hope this helps.
 
RNQ* messages are ILE RPG run-time Inquiry messages.

WRKMSGD MSGID(RNQ1021) MSGF(QSYS/QRNXMSG)

"Attempt to write duplicate record..."
 
Back
Top