 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Error msg not showing on display screen in AS/400</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/error-msg-not-showing-on-display-screen/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/error-msg-not-showing-on-display-screen/</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 18:27:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-msg-not-showing-on-display-screen/#comment-84794</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Fri, 03 Dec 2010 07:59:38 +0000</pubDate>
		<guid isPermaLink="false">#comment-84794</guid>
		<description><![CDATA[&lt;i&gt;TOPGMQ(*prv) &lt;/i&gt;

You&#039;re sending to the program message queue of the entry on the call stack above the CL. Assuming that the CL is compiled as a program, what does the entry above it in the call stack do with messages on its program message queue?

Tom]]></description>
		<content:encoded><![CDATA[<p><i>TOPGMQ(*prv) </i></p>
<p>You&#8217;re sending to the program message queue of the entry on the call stack above the CL. Assuming that the CL is compiled as a program, what does the entry above it in the call stack do with messages on its program message queue?</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ambrish 82</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-msg-not-showing-on-display-screen/#comment-84787</link>
		<dc:creator>ambrish 82</dc:creator>
		<pubDate>Fri, 03 Dec 2010 06:37:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-84787</guid>
		<description><![CDATA[This is source of clp which is called by rpgle, i am passing member name , Source file,Library as a entry parameter , &amp; want show the source of that member , if there is any arror the it should be display on display screen .( where i am using msg subfile)

/******************
             PGM        PARM(&amp;MLFILE &amp;MLLIB &amp;MLNAME)              
             DCL        VAR(&amp;PGMSGQ) TYPE(*CHAR) LEN(10)          
             DCL        VAR(&amp;MLFILE) TYPE(*CHAR) LEN(10)          
             DCL        VAR(&amp;MLLIB) TYPE(*CHAR) LEN(10)           
             DCL        VAR(&amp;MLNAME) TYPE(*CHAR) LEN(10)          
             DCL        VAR(&amp;MSGID) TYPE(*CHAR) LEN(7)            
           
             MONMSG     MSGID(CPF0000) EXEC(GOTO CMDLBL(ERROR))   
             CHGVAR     VAR(&amp;PGMSGQ) VALUE(&#039;DSPfdc&#039;)              
             STRSEU     SRCFILE(&amp;MLLIB/&amp;MLFILE) SRCMBR(&amp;MLNAME) + 
                          OPTION(5)                               
             GOTO       CMDLBL(ENDPGM)                            
error:                                                            
                                                                  
             RMVMSG PGMQ(*PRV) CLEAR(*ALL)                        
             RCVMSG     MSGID(&amp;MSGID)                             
             SNDPGMMSG  MSGID(&amp;MSGID) MSGF(QEDTMSG) TOPGMQ(*prv)   
                                                                   
                                                                   
ENDPGM:      ENDPGM                                                
*************************/


Thanks]]></description>
		<content:encoded><![CDATA[<p>This is source of clp which is called by rpgle, i am passing member name , Source file,Library as a entry parameter , &amp; want show the source of that member , if there is any arror the it should be display on display screen .( where i am using msg subfile)</p>
<p>/******************<br />
             PGM        PARM(&amp;MLFILE &amp;MLLIB &amp;MLNAME)<br />
             DCL        VAR(&amp;PGMSGQ) TYPE(*CHAR) LEN(10)<br />
             DCL        VAR(&amp;MLFILE) TYPE(*CHAR) LEN(10)<br />
             DCL        VAR(&amp;MLLIB) TYPE(*CHAR) LEN(10)<br />
             DCL        VAR(&amp;MLNAME) TYPE(*CHAR) LEN(10)<br />
             DCL        VAR(&amp;MSGID) TYPE(*CHAR) LEN(7)            </p>
<p>             MONMSG     MSGID(CPF0000) EXEC(GOTO CMDLBL(ERROR))<br />
             CHGVAR     VAR(&amp;PGMSGQ) VALUE(&#8216;DSPfdc&#8217;)<br />
             STRSEU     SRCFILE(&amp;MLLIB/&amp;MLFILE) SRCMBR(&amp;MLNAME) +<br />
                          OPTION(5)<br />
             GOTO       CMDLBL(ENDPGM)<br />
error:                                                            </p>
<p>             RMVMSG PGMQ(*PRV) CLEAR(*ALL)<br />
             RCVMSG     MSGID(&amp;MSGID)<br />
             SNDPGMMSG  MSGID(&amp;MSGID) MSGF(QEDTMSG) TOPGMQ(*prv)   </p>
<p>ENDPGM:      ENDPGM<br />
*************************/</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charliebrowne</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-msg-not-showing-on-display-screen/#comment-84746</link>
		<dc:creator>charliebrowne</dc:creator>
		<pubDate>Thu, 02 Dec 2010 15:01:53 +0000</pubDate>
		<guid isPermaLink="false">#comment-84746</guid>
		<description><![CDATA[What is in the parameter for where you are sending it?
Is it going to the users message queue or workstation queue?
Do you need to have those set to be in break mode?]]></description>
		<content:encoded><![CDATA[<p>What is in the parameter for where you are sending it?<br />
Is it going to the users message queue or workstation queue?<br />
Do you need to have those set to be in break mode?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-msg-not-showing-on-display-screen/#comment-84722</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Thu, 02 Dec 2010 08:22:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-84722</guid>
		<description><![CDATA[Most likely, you&#039;re sending it to the joblog or a program message queue (and the program isn&#039;t displaying its messages) instead of to the display. But it&#039;s hard to tell what might need to be changed without seeing the code.

Tom]]></description>
		<content:encoded><![CDATA[<p>Most likely, you&#8217;re sending it to the joblog or a program message queue (and the program isn&#8217;t displaying its messages) instead of to the display. But it&#8217;s hard to tell what might need to be changed without seeing the code.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/8 queries in 0.012 seconds using memcached
Object Caching 311/312 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 00:27:24 -->