 




<?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: Want to find a string in CL source file(ABOUT 400 CL SOURCE ) and replace with other String.</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 14:10:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113993</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Wed, 05 Dec 2012 06:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113993</guid>
		<description><![CDATA[I would do the same as ToddN2000 except I would use Option=XR. I would have a user-defined PDM option named XR (or any valid option name) that was a CL that received library, file and member as parms. First statement would be OVRDBF to override to the member. Last statement would be DLTOVR to delete the override. The OVRDBF/DLTOVR would wrap a RUNSQL command that issued an UPDATE statement that replaced all occurrences of ABCD with DEFG in that member. That&#039;s all there is to it, but it depends on what you have available. -- Tom]]></description>
		<content:encoded><![CDATA[<p>I would do the same as ToddN2000 except I would use Option=XR. I would have a user-defined PDM option named XR (or any valid option name) that was a CL that received library, file and member as parms. First statement would be OVRDBF to override to the member. Last statement would be DLTOVR to delete the override. The OVRDBF/DLTOVR would wrap a RUNSQL command that issued an UPDATE statement that replaced all occurrences of ABCD with DEFG in that member. That&#8217;s all there is to it, but it depends on what you have available. &#8212; Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fsddfsdfsd</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113990</link>
		<dc:creator>fsddfsdfsd</dc:creator>
		<pubDate>Wed, 05 Dec 2012 03:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113990</guid>
		<description><![CDATA[@ToddN2000....I agree with Your solution but the thing is that we have to do it manually.Can We auotmate it my some Logic or any other means.
@TomLiotta...Please suggest Any other way Which can be done.Wha ToddN2000 suggested is some thing which will take time as string to be replaced is in large number]]></description>
		<content:encoded><![CDATA[<p>@ToddN2000&#8230;.I agree with Your solution but the thing is that we have to do it manually.Can We auotmate it my some Logic or any other means.<br />
@TomLiotta&#8230;Please suggest Any other way Which can be done.Wha ToddN2000 suggested is some thing which will take time as string to be replaced is in large number</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113982</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Tue, 04 Dec 2012 21:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113982</guid>
		<description><![CDATA[&lt;EM&gt;Then F13 to flag all members in the source file.&#160;Enter the text you want to find and change OPTION to 2 ...&lt;/EM&gt;
&#160;
Up to the point of entering Option=2, that&#039;s the direction I&#039;d go. Given the description of the problem, using the PDM update option in any manual mode is very inefficient and time consuming. Other options are probably much better, depending on what the OP has available as tools.
&#160;
Tom]]></description>
		<content:encoded><![CDATA[<p><em>Then F13 to flag all members in the source file.&nbsp;Enter the text you want to find and change OPTION to 2 &#8230;</em><br />
&nbsp;<br />
Up to the point of entering Option=2, that&#8217;s the direction I&#8217;d go. Given the description of the problem, using the PDM update option in any manual mode is very inefficient and time consuming. Other options are probably much better, depending on what the OP has available as tools.<br />
&nbsp;<br />
Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ToddN2000</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113968</link>
		<dc:creator>ToddN2000</dc:creator>
		<pubDate>Tue, 04 Dec 2012 16:42:38 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113968</guid>
		<description><![CDATA[Fairly easy thing to do if you are using PDM.&#160;We do it every time there is a new software release.Open source file library and flag first member with a 25. Then F13 to flag all members in the source file.&#160;Enter the text you want to find and change OPTION to 2 , &#160;PRINT LIST = Y.When it stops on a source member your text is found in do a F14 (shift + F2) find/replace. &#160;And check allow data shift Y.When changes are made, F3 to exit and save changes.Then go back and recompile the code after all your source members have been changed you can either use the list &#160;from the search or just recompile all source in the library which ever works best for you..Hope it helps]]></description>
		<content:encoded><![CDATA[<p>Fairly easy thing to do if you are using PDM.&nbsp;We do it every time there is a new software release.Open source file library and flag first member with a 25. Then F13 to flag all members in the source file.&nbsp;Enter the text you want to find and change OPTION to 2 , &nbsp;PRINT LIST = Y.When it stops on a source member your text is found in do a F14 (shift + F2) find/replace. &nbsp;And check allow data shift Y.When changes are made, F3 to exit and save changes.Then go back and recompile the code after all your source members have been changed you can either use the list &nbsp;from the search or just recompile all source in the library which ever works best for you..Hope it helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113959</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Tue, 04 Dec 2012 12:58:03 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/want-to-find-a-string-in-cl-source-file-and-replace-with-other-string/#comment-113959</guid>
		<description><![CDATA[What OS release are you running? Do you have a RUNSQL command? Do you have PDM installed, or do you use RDi? -- Tom]]></description>
		<content:encoded><![CDATA[<p>What OS release are you running? Do you have a RUNSQL command? Do you have PDM installed, or do you use RDi? &#8212; 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/8 queries in 0.034 seconds using memcached
Object Caching 325/326 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 16:24:08 -->