 




<?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: Find the Source file</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 20:47:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/#comment-100339</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Fri, 16 Dec 2011 06:18:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-100339</guid>
		<description><![CDATA[&lt;i&gt;So i m asking about a command that is useful to find out the source PF for all objects supported by iSeries? Is it possible?&lt;/i&gt;

No, it&#039;s not possible.

It&#039;s not possible because most objects aren&#039;t created from source. A data area, for example, doesn&#039;t have &quot;source&quot;. It is directly created by executing a CRTDTAARA command. Source isn&#039;t needed.

An ILE program object can have dozens (or more) modules that make up the program. Each module is likely to have different source. So source for a *PGM object doesn&#039;t make much sense. You look at the modules instead.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>So i m asking about a command that is useful to find out the source PF for all objects supported by iSeries? Is it possible?</i></p>
<p>No, it&#8217;s not possible.</p>
<p>It&#8217;s not possible because most objects aren&#8217;t created from source. A data area, for example, doesn&#8217;t have &#8220;source&#8221;. It is directly created by executing a CRTDTAARA command. Source isn&#8217;t needed.</p>
<p>An ILE program object can have dozens (or more) modules that make up the program. Each module is likely to have different source. So source for a *PGM object doesn&#8217;t make much sense. You look at the modules instead.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sasikumarr</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/#comment-100335</link>
		<dc:creator>sasikumarr</dc:creator>
		<pubDate>Fri, 16 Dec 2011 05:10:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-100335</guid>
		<description><![CDATA[I think WRKOBJPDM LIB(Your_Lib) OBJ(Object_Name) OBJTYPE(*file/*pgm) will also work]]></description>
		<content:encoded><![CDATA[<p>I think WRKOBJPDM LIB(Your_Lib) OBJ(Object_Name) OBJTYPE(*file/*pgm) will also work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pdsathishkumar</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/#comment-100332</link>
		<dc:creator>pdsathishkumar</dc:creator>
		<pubDate>Fri, 16 Dec 2011 04:31:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-100332</guid>
		<description><![CDATA[if you want, how many source physical file using WRKOBJPDM

                                                            
 Library  . . . . . . . . . . . . LIB                     LIBNAME 
 Object . . . . . . . . . . . . . OBJ                   *ALL       
 Object type  . . . . . . . . . . OBJTYPE      *ALL       
 Object attribute . . . . . . . . OBJATR      &#039;PF-SRC&#039;   

otherwise, you want source physical file of object.. use DSPOBJD command

 Object . . . . . . . . . . . . . . . :   PFNAME         
   Library  . . . . . . . . . . . . . :     LIBNAME 
 Library ASP device . . . . . . . . . :   *SYSBAS      
 Type . . . . . . . . . . . . . . . . :   *FILE        
                                                       
 Source file  . . . . . . . . . . . . :   DATABASE   --- SOURCE PHYSICAL FILE NAME  
   Library  . . . . . . . . . . . . . :     SATHISH551]]></description>
		<content:encoded><![CDATA[<p>if you want, how many source physical file using WRKOBJPDM</p>
<p> Library  . . . . . . . . . . . . LIB                     LIBNAME<br />
 Object . . . . . . . . . . . . . OBJ                   *ALL<br />
 Object type  . . . . . . . . . . OBJTYPE      *ALL<br />
 Object attribute . . . . . . . . OBJATR      &#8216;PF-SRC&#8217;   </p>
<p>otherwise, you want source physical file of object.. use DSPOBJD command</p>
<p> Object . . . . . . . . . . . . . . . :   PFNAME<br />
   Library  . . . . . . . . . . . . . :     LIBNAME<br />
 Library ASP device . . . . . . . . . :   *SYSBAS<br />
 Type . . . . . . . . . . . . . . . . :   *FILE        </p>
<p> Source file  . . . . . . . . . . . . :   DATABASE   &#8212; SOURCE PHYSICAL FILE NAME<br />
   Library  . . . . . . . . . . . . . :     SATHISH551</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/#comment-100306</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Thu, 15 Dec 2011 19:07:14 +0000</pubDate>
		<guid isPermaLink="false">#comment-100306</guid>
		<description><![CDATA[&lt;i&gt;...wont give the source PF and Library details for *PGM object.&lt;/i&gt;

If the *PGM was created from source, then DSPOBJD will show source details.

However, ILE programs are not created from source. They are created by binding *MODULE objects together. A *MODULE can be viewed with DSPOBJD to find a reference back to its source.

A *PGM that is compiled for OPM will show a source reference with DSPOBJD.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>&#8230;wont give the source PF and Library details for *PGM object.</i></p>
<p>If the *PGM was created from source, then DSPOBJD will show source details.</p>
<p>However, ILE programs are not created from source. They are created by binding *MODULE objects together. A *MODULE can be viewed with DSPOBJD to find a reference back to its source.</p>
<p>A *PGM that is compiled for OPM will show a source reference with DSPOBJD.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charliebrowne</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/#comment-100300</link>
		<dc:creator>charliebrowne</dc:creator>
		<pubDate>Thu, 15 Dec 2011 14:06:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-100300</guid>
		<description><![CDATA[Not all objects have source.
DSPPGM will give the information for a *PGM object.]]></description>
		<content:encoded><![CDATA[<p>Not all objects have source.<br />
DSPPGM will give the information for a *PGM object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sasikumarr</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/#comment-100287</link>
		<dc:creator>sasikumarr</dc:creator>
		<pubDate>Thu, 15 Dec 2011 09:48:46 +0000</pubDate>
		<guid isPermaLink="false">#comment-100287</guid>
		<description><![CDATA[DSPOBJD &amp; WRKOBJ is useful for some object type like *file, *Menu, etc . But it wont give the source PF for some objects like *PGM, *DTAARA, *DTAQ, *BNDDIR. Is it possible to find the Source PF of all object types in iSeries by using a single command??????.]]></description>
		<content:encoded><![CDATA[<p>DSPOBJD &amp; WRKOBJ is useful for some object type like *file, *Menu, etc . But it wont give the source PF for some objects like *PGM, *DTAARA, *DTAQ, *BNDDIR. Is it possible to find the Source PF of all object types in iSeries by using a single command??????.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sasikumarr</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/#comment-100286</link>
		<dc:creator>sasikumarr</dc:creator>
		<pubDate>Thu, 15 Dec 2011 09:43:29 +0000</pubDate>
		<guid isPermaLink="false">#comment-100286</guid>
		<description><![CDATA[DSPOBJD &amp; WRKOBJ works only for *File object. It wont give the source pf of all other objects like *PGM ,*DTAARA, *DTAQ, BNDDIR. So i m asking about a command that is useful to find out the source PF for all objects supported by iSeries? Is it possible?????]]></description>
		<content:encoded><![CDATA[<p>DSPOBJD &amp; WRKOBJ works only for *File object. It wont give the source pf of all other objects like *PGM ,*DTAARA, *DTAQ, BNDDIR. So i m asking about a command that is useful to find out the source PF for all objects supported by iSeries? Is it possible?????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sasikumarr</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/find-the-source-file/#comment-100284</link>
		<dc:creator>sasikumarr</dc:creator>
		<pubDate>Thu, 15 Dec 2011 08:56:42 +0000</pubDate>
		<guid isPermaLink="false">#comment-100284</guid>
		<description><![CDATA[DSPOBJD &amp; WRKOBJ is wont give the source PF and Library details for *PGM object.]]></description>
		<content:encoded><![CDATA[<p>DSPOBJD &amp; WRKOBJ is wont give the source PF and Library details for *PGM object.</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.012 seconds using memcached
Object Caching 366/369 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 22:21:55 -->