 




<?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: Creating script file to send AS/400 file to unix using SFTP</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/</link>
	<description></description>
	<lastBuildDate>Sun, 19 May 2013 03:14:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: robert79</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83938</link>
		<dc:creator>robert79</dc:creator>
		<pubDate>Tue, 16 Nov 2010 23:13:43 +0000</pubDate>
		<guid isPermaLink="false">#comment-83938</guid>
		<description><![CDATA[Here&#039;s the cmd I used:
&lt;pre&gt;CPYTOSTMF FROMMBR(&#039;/QSYS.LIB/QGPL.LIB/RMDDWKPNDB.FILE/RMDDWKPNDb.mbr&#039;) TOSTMF(&#039;/sftp/rmdedtrc/test8&#039;) CVTDTA(*NONE)&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Here&#8217;s the cmd I used:</p>
<pre>CPYTOSTMF FROMMBR('/QSYS.LIB/QGPL.LIB/RMDDWKPNDB.FILE/RMDDWKPNDb.mbr') TOSTMF('/sftp/rmdedtrc/test8') CVTDTA(*NONE)</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: robert79</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83937</link>
		<dc:creator>robert79</dc:creator>
		<pubDate>Tue, 16 Nov 2010 23:12:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-83937</guid>
		<description><![CDATA[Hi Tom,
I created a PF and loaded it.  Then I used the CPYTOSTMF cmd and it seemed to work.  
&lt;pre&gt;CPYTOSTMF FROMMBR(&#039;/QSYS.LIB/QGPL.LIB/RMDDWKPNDB.FILE/RMDDWKPNDb.mbr&#039;) TOSTMF(&#039;/sftp/rmdedtrc/test8&#039;) CVTDTA(*NONE)&lt;/pre&gt;

I&#039;ll verify it tomorrow and figure out how to adjust the CL pgm.  The CL pgm sends 8 other sftp jobs.  I was hoping to not change the pgm, but I may have to.
Thanks again for your help.
Robert]]></description>
		<content:encoded><![CDATA[<p>Hi Tom,<br />
I created a PF and loaded it.  Then I used the CPYTOSTMF cmd and it seemed to work.  </p>
<pre>CPYTOSTMF FROMMBR('/QSYS.LIB/QGPL.LIB/RMDDWKPNDB.FILE/RMDDWKPNDb.mbr') TOSTMF('/sftp/rmdedtrc/test8') CVTDTA(*NONE)</pre>
<p>I&#8217;ll verify it tomorrow and figure out how to adjust the CL pgm.  The CL pgm sends 8 other sftp jobs.  I was hoping to not change the pgm, but I may have to.<br />
Thanks again for your help.<br />
Robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83846</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Mon, 15 Nov 2010 21:55:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-83846</guid>
		<description><![CDATA[&lt;i&gt;However, that didn’t fix my problem. &lt;/i&gt;

The pasted items came across great. The situation is clear.

Now on to &quot;the problem&quot;. Are you simply wanting to send an image of the record itself?

If so, you might want to create a non-database file container for it:&lt;pre&gt;
CRTPF FILE( QGPL/RMDDWKPNDB )  RCDLEN(94)
CPYF FROMFILE( QGPL/RMDDWKP )  TOFILE( QGPL/RMDDWKPNDB )  MBROPT( *REPLACE )  FMTOPT( *NOCHK )&lt;/pre&gt;
Then you might be able to put /QSYS.LIB/QGPL.LIB/RMDDWKPNDB.FILE/RMDDWKPNDB.MBR. And if that doesn&#039;t work directly, you can use CPYTOSTMF to copy RMDDWKPNDB to an IFS streamfile without modification.

CPYTOIMPF isn&#039;t exactly a &quot;copy&quot; command as much as it is an &quot;export&quot; command. CPYFRMIMPF and CPYTOIMPF provide basic forms of DB2 IMPORT and EXPORT functions.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>However, that didn’t fix my problem. </i></p>
<p>The pasted items came across great. The situation is clear.</p>
<p>Now on to &#8220;the problem&#8221;. Are you simply wanting to send an image of the record itself?</p>
<p>If so, you might want to create a non-database file container for it:
<pre>
CRTPF FILE( QGPL/RMDDWKPNDB )  RCDLEN(94)
CPYF FROMFILE( QGPL/RMDDWKP )  TOFILE( QGPL/RMDDWKPNDB )  MBROPT( *REPLACE )  FMTOPT( *NOCHK )</pre>
<p>Then you might be able to put /QSYS.LIB/QGPL.LIB/RMDDWKPNDB.FILE/RMDDWKPNDB.MBR. And if that doesn&#8217;t work directly, you can use CPYTOSTMF to copy RMDDWKPNDB to an IFS streamfile without modification.</p>
<p>CPYTOIMPF isn&#8217;t exactly a &#8220;copy&#8221; command as much as it is an &#8220;export&#8221; command. CPYFRMIMPF and CPYTOIMPF provide basic forms of DB2 IMPORT and EXPORT functions.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robert79</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83828</link>
		<dc:creator>robert79</dc:creator>
		<pubDate>Mon, 15 Nov 2010 16:41:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-83828</guid>
		<description><![CDATA[I hope this format is ok.
This is RMDDWKP in the IFS:

&lt;pre&gt;....+....1....+....2....+....3....+....4....+....5....+....6....+....7....+....8....+....9....+....0....+....1....+....2....+....3....+....4....+....5....+...
 ************Beginning of data**************                                    
20101111  617420765954  403724313246  SSR  2   2010  3-DCL 3DCL 20101111  20101114  3   342   2393.68    .00
20101111  606931009568  403984316437  BLT  2   2010  RCINTHRCI  20101111  20101114  3   142   .00        .00
20101111  646750726901  403304308639  SSR  3   2010  3-DCL 3DCL 20101111  20101114  3   234   1631.84    .00&lt;/pre&gt;

Notice the decimal point in the numbers.
Thanks for your help, Tom.]]></description>
		<content:encoded><![CDATA[<p>I hope this format is ok.<br />
This is RMDDWKP in the IFS:</p>
<pre>....+....1....+....2....+....3....+....4....+....5....+....6....+....7....+....8....+....9....+....0....+....1....+....2....+....3....+....4....+....5....+...
 ************Beginning of data**************                                    
20101111  617420765954  403724313246  SSR  2   2010  3-DCL 3DCL 20101111  20101114  3   342   2393.68    .00
20101111  606931009568  403984316437  BLT  2   2010  RCINTHRCI  20101111  20101114  3   142   .00        .00
20101111  646750726901  403304308639  SSR  3   2010  3-DCL 3DCL 20101111  20101114  3   234   1631.84    .00</pre>
<p>Notice the decimal point in the numbers.<br />
Thanks for your help, Tom.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robert79</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83827</link>
		<dc:creator>robert79</dc:creator>
		<pubDate>Mon, 15 Nov 2010 16:39:16 +0000</pubDate>
		<guid isPermaLink="false">#comment-83827</guid>
		<description><![CDATA[Here&#039;s RMDDWKP on the AS400:

&lt;pre&gt;*...+....1....+....2....+....3....+....4....+....5....+....6....+....7....+....8....+....9....
20011019271500130244366710024520CLUB 122000DCL7  CRUIS2001042120010428070406000324750000000000
20011019262040400066367090026448BWALK022001DCL7  CRUIS2001042120010428070484000385125000000000
20011019260860123936366840025147CLUB 122000DCL7  CRUIS2001042120010428070406000333750000009000&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Here&#8217;s RMDDWKP on the AS400:</p>
<pre>*...+....1....+....2....+....3....+....4....+....5....+....6....+....7....+....8....+....9....
20011019271500130244366710024520CLUB 122000DCL7  CRUIS2001042120010428070406000324750000000000
20011019262040400066367090026448BWALK022001DCL7  CRUIS2001042120010428070484000385125000000000
20011019260860123936366840025147CLUB 122000DCL7  CRUIS2001042120010428070406000333750000009000</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: robert79</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83822</link>
		<dc:creator>robert79</dc:creator>
		<pubDate>Mon, 15 Nov 2010 16:25:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-83822</guid>
		<description><![CDATA[Hi Tom,
Yes, I copy/pasted from DSPPFM.
Is this ok?

 &lt;pre&gt;                            Display Spooled File                             
File  . . . . . :   QPDSPFFD                         Page/Line   1/1          
Control . . . . .                                    Columns     1 - 78       
Find  . . . . . .                                                             
*...+....1....+....2....+....3....+....4....+....5....+....6....+....7....+...
 5722SS1 V5R4M0  060210      Display File Field Description                   
 Input parameters                                                             
   File  . . . . . . . . . . . . . . . . . . . :  RMDDWKP                     
     Library . . . . . . . . . . . . . . . . . :  *LIBL                       
 File Information                                                             
   File  . . . . . . . . . . . . . . . . . . . :  RMDDWKP                     
     Library . . . . . . . . . . . . . . . . . :  DVDCFIL                     
   File location . . . . . . . . . . . . . . . :  *LCL                        
   Externally described  . . . . . . . . . . . :  Yes                         
   Number of record formats  . . . . . . . . . :      1                       
   Type of file  . . . . . . . . . . . . . . . :  Physical                    
   File creation date  . . . . . . . . . . . . :  09/11/00                    
   Text &#039;description&#039;. . . . . . . . . . . . . :  Rev. Mgmt. DE Detail Trans W
 Record Format Information                                                    
   Record format . . . . . . . . . . . . . . . :  RMDDWK                      
   Format level identifier . . . . . . . . . . :  4D3121D8651C4               
   Number of fields  . . . . . . . . . . . . . :     14                       
   Record length . . . . . . . . . . . . . . . :     94                       
 Field Level Information                                                      
              Data        Field  Buffer    Buffer        Field    Column      
   Field      Type       Length  Length  Position        Usage    Heading     
   DDPOST     ZONED        8  0       8         1        Both     DDPOST      
     Field text  . . . . . . . . . . . . . . . :  Snap Shot Date              
   DDMBR#     ZONED       12  0      12         9        Both     DDMBR#      
     Field text  . . . . . . . . . . . . . . . :  Member Number               
   DDRES#     ZONED       12  0      12        21        Both     DDRES#      
     Field text  . . . . . . . . . . . . . . . :  Res Number                  
   DDREST     CHAR            5       5        33        Both     DDREST      
     Field text  . . . . . . . . . . . . . . . :  Contract Resort             
     Coded Character Set Identifier  . . . . . :     37                       
   DDUMTH     ZONED        2  0       2        38        Both     DDUMTH      
     Field text  . . . . . . . . . . . . . . . :  Use-Month                   
   DDUSYR     ZONED        4  0       4        40        Both     DDUSYR      
     Field text  . . . . . . . . . . . . . . . :  Use-Year                    
   DDTRIP     CHAR            6       6        44        Both     DDTRIP      
     Field text  . . . . . . . . . . . . . . . :  DE Trip Code                
     Coded Character Set Identifier  . . . . . :     37                       
   DDTCAT     CHAR            5       5        50        Both     DDTCAT      
     Field text  . . . . . . . . . . . . . . . :  DE Trip Category            
     Coded Character Set Identifier  . . . . . :     37                       
   DDARRD     ZONED        8  0       8        55        Both     DDARRD      
     Field text  . . . . . . . . . . . . . . . :  Arrival Date                
   DDDPTD     ZONED        8  0       8        63        Both     DDDPTD      
     Field text  . . . . . . . . . . . . . . . :  Departure Date              
 5722SS1 V5R4M0  060210      Display File Field Description                   
 Record format . . . . :  RMDDWK        File . . . :  RMDDWKP      Library . .
              Data        Field  Buffer    Buffer        Field    Column      
   Field      Type       Length  Length  Position        Usage    Heading     
   DDNGTS     ZONED        2  0       2        71        Both     DDNGTS      
     Field text  . . . . . . . . . . . . . . . :  Number of Nights            
   DDPTST     ZONED        4  0       4        73        Both     DDPTST      
     Field text  . . . . . . . . . . . . . . . :  Points Total                
   DDCOST     ZONED        9  2       9        77        Both     DDCOST      
     Field text  . . . . . . . . . . . . . . . :  DVC Cost for Trip           
   DDDOLR     ZONED        9  2       9        86        Both     DDDOLR      
     Field text  . . . . . . . . . . . . . . . :  Member Paid in $$           &lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Tom,<br />
Yes, I copy/pasted from DSPPFM.<br />
Is this ok?</p>
<pre>                            Display Spooled File                             
File  . . . . . :   QPDSPFFD                         Page/Line   1/1          
Control . . . . .                                    Columns     1 - 78       
Find  . . . . . .                                                             
*...+....1....+....2....+....3....+....4....+....5....+....6....+....7....+...
 5722SS1 V5R4M0  060210      Display File Field Description                   
 Input parameters                                                             
   File  . . . . . . . . . . . . . . . . . . . :  RMDDWKP                     
     Library . . . . . . . . . . . . . . . . . :  *LIBL                       
 File Information                                                             
   File  . . . . . . . . . . . . . . . . . . . :  RMDDWKP                     
     Library . . . . . . . . . . . . . . . . . :  DVDCFIL                     
   File location . . . . . . . . . . . . . . . :  *LCL                        
   Externally described  . . . . . . . . . . . :  Yes                         
   Number of record formats  . . . . . . . . . :      1                       
   Type of file  . . . . . . . . . . . . . . . :  Physical                    
   File creation date  . . . . . . . . . . . . :  09/11/00                    
   Text 'description'. . . . . . . . . . . . . :  Rev. Mgmt. DE Detail Trans W
 Record Format Information                                                    
   Record format . . . . . . . . . . . . . . . :  RMDDWK                      
   Format level identifier . . . . . . . . . . :  4D3121D8651C4               
   Number of fields  . . . . . . . . . . . . . :     14                       
   Record length . . . . . . . . . . . . . . . :     94                       
 Field Level Information                                                      
              Data        Field  Buffer    Buffer        Field    Column      
   Field      Type       Length  Length  Position        Usage    Heading     
   DDPOST     ZONED        8  0       8         1        Both     DDPOST      
     Field text  . . . . . . . . . . . . . . . :  Snap Shot Date              
   DDMBR#     ZONED       12  0      12         9        Both     DDMBR#      
     Field text  . . . . . . . . . . . . . . . :  Member Number               
   DDRES#     ZONED       12  0      12        21        Both     DDRES#      
     Field text  . . . . . . . . . . . . . . . :  Res Number                  
   DDREST     CHAR            5       5        33        Both     DDREST      
     Field text  . . . . . . . . . . . . . . . :  Contract Resort             
     Coded Character Set Identifier  . . . . . :     37                       
   DDUMTH     ZONED        2  0       2        38        Both     DDUMTH      
     Field text  . . . . . . . . . . . . . . . :  Use-Month                   
   DDUSYR     ZONED        4  0       4        40        Both     DDUSYR      
     Field text  . . . . . . . . . . . . . . . :  Use-Year                    
   DDTRIP     CHAR            6       6        44        Both     DDTRIP      
     Field text  . . . . . . . . . . . . . . . :  DE Trip Code                
     Coded Character Set Identifier  . . . . . :     37                       
   DDTCAT     CHAR            5       5        50        Both     DDTCAT      
     Field text  . . . . . . . . . . . . . . . :  DE Trip Category            
     Coded Character Set Identifier  . . . . . :     37                       
   DDARRD     ZONED        8  0       8        55        Both     DDARRD      
     Field text  . . . . . . . . . . . . . . . :  Arrival Date                
   DDDPTD     ZONED        8  0       8        63        Both     DDDPTD      
     Field text  . . . . . . . . . . . . . . . :  Departure Date              
 5722SS1 V5R4M0  060210      Display File Field Description                   
 Record format . . . . :  RMDDWK        File . . . :  RMDDWKP      Library . .
              Data        Field  Buffer    Buffer        Field    Column      
   Field      Type       Length  Length  Position        Usage    Heading     
   DDNGTS     ZONED        2  0       2        71        Both     DDNGTS      
     Field text  . . . . . . . . . . . . . . . :  Number of Nights            
   DDPTST     ZONED        4  0       4        73        Both     DDPTST      
     Field text  . . . . . . . . . . . . . . . :  Points Total                
   DDCOST     ZONED        9  2       9        77        Both     DDCOST      
     Field text  . . . . . . . . . . . . . . . :  DVC Cost for Trip           
   DDDOLR     ZONED        9  2       9        86        Both     DDDOLR      
     Field text  . . . . . . . . . . . . . . . :  Member Paid in $$           </pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83740</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Fri, 12 Nov 2010 21:55:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-83740</guid>
		<description><![CDATA[&lt;i&gt;...the data looks like this:&lt;/i&gt;

Is that copy/pasted directly off of a line from the display created by the DSPPFM command? Can you provide the output from DSPFFD for the file? If possible, run DSPFFD OUITPUT(*PRINT). Use iNav to drag the spooled file into a .TXT file on your PC. Copy/paste the field information into a discussion box here. After the paste, select the pasted text, then click the {code} button. That will preserve newline characters for each line and also preserve spacing within each line.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>&#8230;the data looks like this:</i></p>
<p>Is that copy/pasted directly off of a line from the display created by the DSPPFM command? Can you provide the output from DSPFFD for the file? If possible, run DSPFFD OUITPUT(*PRINT). Use iNav to drag the spooled file into a .TXT file on your PC. Copy/paste the field information into a discussion box here. After the paste, select the pasted text, then click the {code} button. That will preserve newline characters for each line and also preserve spacing within each line.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robert79</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83713</link>
		<dc:creator>robert79</dc:creator>
		<pubDate>Fri, 12 Nov 2010 15:16:18 +0000</pubDate>
		<guid isPermaLink="false">#comment-83713</guid>
		<description><![CDATA[This is the copy cmd that I&#039;m using:

CPYTOIMPF  FROMFILE(&amp;AS400LIB/&amp;AS400FILE) +           
             TOSTMF(&amp;FTPDF) MBROPT(*REPLACE) +        
             STMFCODPAG(*PCASCII) RCDDLM(*LF) +       
             DTAFMT(*FIXED)]]></description>
		<content:encoded><![CDATA[<p>This is the copy cmd that I&#8217;m using:</p>
<p>CPYTOIMPF  FROMFILE(&amp;AS400LIB/&amp;AS400FILE) +<br />
             TOSTMF(&amp;FTPDF) MBROPT(*REPLACE) +<br />
             STMFCODPAG(*PCASCII) RCDDLM(*LF) +<br />
             DTAFMT(*FIXED)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robert79</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83710</link>
		<dc:creator>robert79</dc:creator>
		<pubDate>Fri, 12 Nov 2010 14:55:58 +0000</pubDate>
		<guid isPermaLink="false">#comment-83710</guid>
		<description><![CDATA[Hi Tom,
Thanks for helping me.
Your &#039;put&#039; works!
However, that didn&#039;t fix my problem.  

In RMDDWKP, an AS400 data base file with multiple fields, the data looks like this:
20101111617420765954403724313246SSR  0220103-DCL 3DCL 201011112010111403034200

When I copy it into the IFS, it changes the format to this:
20101111  617420765954  403724313246  SSR  2   2010  3-DCL 3DCL 20101111  201011

Notice the spaces.
That&#039;s the real problem.  I think that the copy into the IFS is changing the format so I want to get the file directly from the library.  Maybe that&#039;s not the problem?
Thanks,
Robert]]></description>
		<content:encoded><![CDATA[<p>Hi Tom,<br />
Thanks for helping me.<br />
Your &#8216;put&#8217; works!<br />
However, that didn&#8217;t fix my problem.  </p>
<p>In RMDDWKP, an AS400 data base file with multiple fields, the data looks like this:<br />
20101111617420765954403724313246SSR  0220103-DCL 3DCL 201011112010111403034200</p>
<p>When I copy it into the IFS, it changes the format to this:<br />
20101111  617420765954  403724313246  SSR  2   2010  3-DCL 3DCL 20101111  201011</p>
<p>Notice the spaces.<br />
That&#8217;s the real problem.  I think that the copy into the IFS is changing the format so I want to get the file directly from the library.  Maybe that&#8217;s not the problem?<br />
Thanks,<br />
Robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-script-file-to-send-as400-file-to-unis-using-sftp/#comment-83691</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Fri, 12 Nov 2010 02:17:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-83691</guid>
		<description><![CDATA[&lt;i&gt;It can&#039;t find RMDDWKP. Why not? What is the correct code?&lt;/i&gt;

It&#039;s probably because of this line:&lt;pre&gt;
put QGPL/RMDDWKP&lt;/pre&gt;
I&#039;d guess that there is no subdirectory in your current directory path named QGPL.

You probably want something more like this:&lt;pre&gt;
put /QSYS.LIB/QGPL.LIB/RMDDWKP.FILE/RMDDWKP.MBR&lt;/pre&gt;
It&#039;s hard to be certain, though, since you didn&#039;t tell us where RMDDWKP really is. We don&#039;t know what kind of file it is (database or streamfile), so we can&#039;t be sure what the correct path should be.

If it is a database file, we also should know something about its structure in order to suggest whether or not the transfer makes good sense. If it is a physical file with a single text field, it should be okay. Otherwise, there are probably some missing steps.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>It can&#8217;t find RMDDWKP. Why not? What is the correct code?</i></p>
<p>It&#8217;s probably because of this line:
<pre>
put QGPL/RMDDWKP</pre>
<p>I&#8217;d guess that there is no subdirectory in your current directory path named QGPL.</p>
<p>You probably want something more like this:
<pre>
put /QSYS.LIB/QGPL.LIB/RMDDWKP.FILE/RMDDWKP.MBR</pre>
<p>It&#8217;s hard to be certain, though, since you didn&#8217;t tell us where RMDDWKP really is. We don&#8217;t know what kind of file it is (database or streamfile), so we can&#8217;t be sure what the correct path should be.</p>
<p>If it is a database file, we also should know something about its structure in order to suggest whether or not the transfer makes good sense. If it is a physical file with a single text field, it should be okay. Otherwise, there are probably some missing steps.</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 3/10 queries in 0.032 seconds using memcached
Object Caching 393/399 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 08:50:24 -->