 




<?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: AS/400 mapping keys</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/as400-37/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-37/</link>
	<description></description>
	<lastBuildDate>Mon, 20 May 2013 05:26:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-37/#comment-78871</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Mon, 05 Jul 2010 20:15:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-78871</guid>
		<description><![CDATA[&lt;i&gt;if a PC, you right-click on the blue-bar and map it there.&lt;/i&gt;

What &quot;blue-bar&quot;? I use iSeries Access (PComm), Mocha, TN5250 and Windows telnet emulators regularly. None have a &quot;blue-bar&quot; that I can see, except the window title bars.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>if a PC, you right-click on the blue-bar and map it there.</i></p>
<p>What &#8220;blue-bar&#8221;? I use iSeries Access (PComm), Mocha, TN5250 and Windows telnet emulators regularly. None have a &#8220;blue-bar&#8221; that I can see, except the window title bars.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: splat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-37/#comment-78835</link>
		<dc:creator>splat</dc:creator>
		<pubDate>Fri, 02 Jul 2010 20:59:59 +0000</pubDate>
		<guid isPermaLink="false">#comment-78835</guid>
		<description><![CDATA[Another method is not to assign indicators to function keys in the display file but use the AID (named &#039;function&#039; in the following example) from the workstation INFDS

&lt;pre&gt;FDisplyFile Cf   e             Workstn                     
F                                     infds(workstn)      


D Workstn         Ds                 
D  dspfilnm         *file            
D  dsprcdnm         *record          
D  function             369    369   
D  cursor               370    371b 0


D F1              C                   const(x&#039;31&#039;)
D F2              C                   const(x&#039;32&#039;)
D F3              C                   const(x&#039;33&#039;)
D F4              C                   const(x&#039;34&#039;)
D F5              C                   const(x&#039;35&#039;)
D F6              C                   const(x&#039;36&#039;)
D F7              C                   const(x&#039;37&#039;)
D F8              C                   const(x&#039;38&#039;)
D F9              C                   const(x&#039;39&#039;)
D F10             C                   const(x&#039;3A&#039;)
D F11             C                   const(x&#039;3B&#039;)
D F12             C                   const(x&#039;3C&#039;)
                                                  
D F13             C                   const(x&#039;B1&#039;)
D F14             C                   const(x&#039;B2&#039;)
D F15             C                   const(x&#039;B3&#039;)
D F16             C                   const(x&#039;B4&#039;)
D F17             C                   const(x&#039;B5&#039;)
D F18             C                   const(x&#039;B6&#039;)
D F19             C                   const(x&#039;B7&#039;)
D F20             C                   const(x&#039;B8&#039;)
D F21             C                   const(x&#039;B9&#039;)
D F22             C                   const(x&#039;BA&#039;)
D F23             C                   const(x&#039;BB&#039;)
D F24             C                   const(x&#039;BC&#039;)
                                                  
D Clear           C                   const(x&#039;BD&#039;)
D Enter           C                   const(x&#039;F1&#039;)
D Help            C                   const(x&#039;F3&#039;)
D Roll_down       C                   const(x&#039;F4&#039;)
D Page_up         C                   const(x&#039;F4&#039;)
D Roll_up         C                   const(x&#039;F5&#039;)
D Page_down       C                   const(x&#039;F5&#039;)
D Print           C                   const(x&#039;F6&#039;)
D Home            C                   const(x&#039;F8&#039;)
D Auto_enter      C                   const(x&#039;3F&#039;)


If function = f3  or
   function = f12 or
   function = home;
Exsr End_of_pgm;
EndIf;&lt;/pre&gt;

I usually keep the function key constants in a /copy member.]]></description>
		<content:encoded><![CDATA[<p>Another method is not to assign indicators to function keys in the display file but use the AID (named &#8216;function&#8217; in the following example) from the workstation INFDS</p>
<pre>FDisplyFile Cf   e             Workstn                     
F                                     infds(workstn)      


D Workstn         Ds                 
D  dspfilnm         *file            
D  dsprcdnm         *record          
D  function             369    369   
D  cursor               370    371b 0


D F1              C                   const(x'31')
D F2              C                   const(x'32')
D F3              C                   const(x'33')
D F4              C                   const(x'34')
D F5              C                   const(x'35')
D F6              C                   const(x'36')
D F7              C                   const(x'37')
D F8              C                   const(x'38')
D F9              C                   const(x'39')
D F10             C                   const(x'3A')
D F11             C                   const(x'3B')
D F12             C                   const(x'3C')
                                                  
D F13             C                   const(x'B1')
D F14             C                   const(x'B2')
D F15             C                   const(x'B3')
D F16             C                   const(x'B4')
D F17             C                   const(x'B5')
D F18             C                   const(x'B6')
D F19             C                   const(x'B7')
D F20             C                   const(x'B8')
D F21             C                   const(x'B9')
D F22             C                   const(x'BA')
D F23             C                   const(x'BB')
D F24             C                   const(x'BC')
                                                  
D Clear           C                   const(x'BD')
D Enter           C                   const(x'F1')
D Help            C                   const(x'F3')
D Roll_down       C                   const(x'F4')
D Page_up         C                   const(x'F4')
D Roll_up         C                   const(x'F5')
D Page_down       C                   const(x'F5')
D Print           C                   const(x'F6')
D Home            C                   const(x'F8')
D Auto_enter      C                   const(x'3F')


If function = f3  or
   function = f12 or
   function = home;
Exsr End_of_pgm;
EndIf;</pre>
<p>I usually keep the function key constants in a /copy member.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-37/#comment-78812</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Fri, 02 Jul 2010 06:21:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-78812</guid>
		<description><![CDATA[What mapping? What commands? The question needs a lot of explanation.

Tom]]></description>
		<content:encoded><![CDATA[<p>What mapping? What commands? The question needs a lot of explanation.</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/9 queries in 0.014 seconds using memcached
Object Caching 296/299 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-20 07:23:59 -->