<?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: RPG date retrieval</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/rpg-9/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/rpg-9/</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 04:33:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: The Most-Watched IT Questions: September 20, 2011 - ITKE Community Blog</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rpg-9/#comment-96806</link>
		<dc:creator>The Most-Watched IT Questions: September 20, 2011 - ITKE Community Blog</dc:creator>
		<pubDate>Tue, 20 Sep 2011 06:42:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-96806</guid>
		<description><![CDATA[[...] Philpl1jb and CharlieBrowne offered the approved answer on RPG date retrieval.  6. Check out the community suggestions for what to do when critical storage lower limit is [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Philpl1jb and CharlieBrowne offered the approved answer on RPG date retrieval.  6. Check out the community suggestions for what to do when critical storage lower limit is [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpl1jb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rpg-9/#comment-96248</link>
		<dc:creator>philpl1jb</dc:creator>
		<pubDate>Wed, 07 Sep 2011 05:48:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-96248</guid>
		<description><![CDATA[Please be much more specific about &quot;it isn&#039;t working&quot;

If something is not &quot;working&quot; tell what is happening -- compile error xxxxxx or run time error xxxxx or incorrect value xxxxxxx.  You&#039;ve told us you are on V4 but are you using RPG or RPGLE ????

Phil]]></description>
		<content:encoded><![CDATA[<p>Please be much more specific about &#8220;it isn&#8217;t working&#8221;</p>
<p>If something is not &#8220;working&#8221; tell what is happening &#8212; compile error xxxxxx or run time error xxxxx or incorrect value xxxxxxx.  You&#8217;ve told us you are on V4 but are you using RPG or RPGLE ????</p>
<p>Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpl1jb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rpg-9/#comment-96246</link>
		<dc:creator>philpl1jb</dc:creator>
		<pubDate>Wed, 07 Sep 2011 05:44:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-96246</guid>
		<description><![CDATA[then as Charlie Brown Suggests, use the adddur operation

D   TodayP7       S               D   inz(*SYS) datfmt(*EUR)

c        adddur    7:*days    TodayP7

Phil]]></description>
		<content:encoded><![CDATA[<p>then as Charlie Brown Suggests, use the adddur operation</p>
<p>D   TodayP7       S               D   inz(*SYS) datfmt(*EUR)</p>
<p>c        adddur    7:*days    TodayP7</p>
<p>Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajasekhar15</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rpg-9/#comment-96245</link>
		<dc:creator>rajasekhar15</dc:creator>
		<pubDate>Wed, 07 Sep 2011 05:04:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-96245</guid>
		<description><![CDATA[this is procedure is not working in v4 version, plz advice me anyother method]]></description>
		<content:encoded><![CDATA[<p>this is procedure is not working in v4 version, plz advice me anyother method</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpl1jb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rpg-9/#comment-96218</link>
		<dc:creator>philpl1jb</dc:creator>
		<pubDate>Tue, 06 Sep 2011 16:06:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-96218</guid>
		<description><![CDATA[My answer is for RPG/IV RPGLE not RPG 
The build in function %date() returns todays date
+ %days(7) adds 7 days to the date
field: TodayPlus7 receives the date.  It is a date type field displaying in European format dd.mm.yyyy

Phil]]></description>
		<content:encoded><![CDATA[<p>My answer is for RPG/IV RPGLE not RPG<br />
The build in function %date() returns todays date<br />
+ %days(7) adds 7 days to the date<br />
field: TodayPlus7 receives the date.  It is a date type field displaying in European format dd.mm.yyyy</p>
<p>Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpl1jb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rpg-9/#comment-96214</link>
		<dc:creator>philpl1jb</dc:creator>
		<pubDate>Tue, 06 Sep 2011 15:14:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-96214</guid>
		<description><![CDATA[D TodayPlus7           S               D   DATFMT(*EUR)  

c  eval      TodayPlus7  = %date() + %days(7)

Value in TodayPlus7 is  13.09.2011 not TodayPlus7 is a date type field.
Phil]]></description>
		<content:encoded><![CDATA[<p>D TodayPlus7           S               D   DATFMT(*EUR)  </p>
<p>c  eval      TodayPlus7  = %date() + %days(7)</p>
<p>Value in TodayPlus7 is  13.09.2011 not TodayPlus7 is a date type field.<br />
Phil</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.038 seconds using memcached
Object Caching 337/343 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 06:49:39 -->