If you are exchanging messages between ASCII and EBCDIC platforms, don't use CONVERT(YES) on channels - let the apps request conversion. If the receiving app issues MQGET without MQGMO_CONVERT, you will get the message in whatever format the sending app MQPUT it. If you also need to see the message in converted format after seeing it unconverted, issue the first MQGET with the browse option to get unconverted and then use the MQGMO_MSG_UNDER_CURSOR and MQGMO_CONVERT options for a second MQGET to get in converted format. This method uses MQ facilities, otherwise you have to code the conversion yourself (imho).
Garry.