<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Oracle Federal Applications &#187; Form Personalization</title>
	<atom:link href="http://oraclefedapps.com/tag/form-personalization/feed/" rel="self" type="application/rss+xml" />
	<link>http://oraclefedapps.com</link>
	<description>Sharing info, perspectives and solutions in support of the Oracle Federal E-Business Suite/Financials Community.</description>
	<lastBuildDate>Fri, 11 May 2012 22:08:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='oraclefedapps.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Oracle Federal Applications &#187; Form Personalization</title>
		<link>http://oraclefedapps.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://oraclefedapps.com/osd.xml" title="Oracle Federal Applications" />
	<atom:link rel='hub' href='http://oraclefedapps.com/?pushpress=hub'/>
		<item>
		<title>Modifying Default Treasury Symbol Cancellation Date Behavior</title>
		<link>http://oraclefedapps.com/2009/03/26/modifying-default-treasury-symbol-cancellation-date-behavior/</link>
		<comments>http://oraclefedapps.com/2009/03/26/modifying-default-treasury-symbol-cancellation-date-behavior/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 06:15:22 +0000</pubDate>
		<dc:creator>Larry.Baugh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Form Personalization]]></category>
		<category><![CDATA[Treasury Symbols]]></category>

		<guid isPermaLink="false">http://oraclefedapps.com/?p=221</guid>
		<description><![CDATA[Recently I&#8217;ve been doing a little work with converting a large number of Treasury Symbols on my current project into Fed Admin.  I came up with a quick form personalization to change the default cancellation date logic from &#8217;01-OCT-20XX&#8217; to &#8217;30-Sep-20XX&#8217; and I thought I&#8217;d share in case it was helpful to anyone else. Oracle [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oraclefedapps.com&#038;blog=4997250&#038;post=221&#038;subd=oraclefedapps&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been doing a little work with converting a large number of Treasury Symbols on my current project into Fed Admin.  I came up with a quick form personalization to change the default cancellation date logic from &#8217;01-OCT-20XX&#8217; to &#8217;30-Sep-20XX&#8217; and I thought I&#8217;d share in case it was helpful to anyone else.</p>
<p>Oracle defaults the &#8217;01-Oct&#8217; as the cancellation date out of the box when creating new treasury symbols.  However,  in order for the standard year-end processes to execute properly for cancelled funds (&amp; apply the Cancelled Fund closing logic), the treasury symbols need to have a cancellation date in the same fiscal year that the closing process is being run for.  Thus the need for the date to be 30-September.</p>
<p><span id="more-221"></span>Here are a few graphics along with a video demonstrating the new action that the personalization provides and how to do it.</p>
<p><img class="aligncenter size-full wp-image-222" title="image001" src="http://oraclefedapps.files.wordpress.com/2009/03/image001.png?w=544" alt="image001"   /></p>
<p><img class="aligncenter size-full wp-image-223" title="image003" src="http://oraclefedapps.files.wordpress.com/2009/03/image003.png?w=544" alt="image003"   /></p>
<p><img class="aligncenter size-full wp-image-224" title="image005" src="http://oraclefedapps.files.wordpress.com/2009/03/image005.png?w=544" alt="image005"   /></p>
<p><img class="aligncenter size-full wp-image-225" title="image007" src="http://oraclefedapps.files.wordpress.com/2009/03/image007.png?w=544" alt="image007"   /></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">Here is the new default logic to paste into the value field:</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">=CASE WHEN :FV_FACTS_TREASURY_SYMBOLS.TIME_FRAME = &#8216;NO_YEAR&#8217; THEN NULL</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">WHEN :FV_FACTS_TREASURY_SYMBOLS.TIME_FRAME = &#8216;SINGLE&#8217;</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">THEN TO_DATE(&#8217;30-SEP&#8217;||TO_CHAR(:FV_FACTS_TREASURY_SYMBOLS.ESTABLISHED_FISCAL_YR+5))</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">WHEN :FV_FACTS_TREASURY_SYMBOLS.TIME_FRAME = &#8216;MULTIPLE&#8217;</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">THEN TO_DATE(&#8217;30-SEP&#8217;|| TO_CHAR(:FV_FACTS_TREASURY_SYMBOLS.ESTABLISHED_FISCAL_YR+</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">:FV_FACTS_TREASURY_SYMBOLS.YEARS_AVAILABLE+4))</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">ELSE NULL END</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">To see a short demo of how the new default functionality works and more info on the setup, I put together a video which can be viewed <a href="http://www.screencast.com/users/LarryBaugh/folders/Jing/media/97b36f98-a642-4f53-a15b-1d828acd8699" target="_blank">here</a>.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;">Hope that helps out anyone who has ever been annoyed by having to change the default cancellation dates when creating new treasury symbols.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oraclefedapps.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oraclefedapps.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oraclefedapps.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oraclefedapps.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oraclefedapps.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oraclefedapps.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oraclefedapps.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oraclefedapps.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oraclefedapps.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oraclefedapps.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oraclefedapps.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oraclefedapps.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oraclefedapps.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oraclefedapps.wordpress.com/221/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oraclefedapps.com&#038;blog=4997250&#038;post=221&#038;subd=oraclefedapps&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://oraclefedapps.com/2009/03/26/modifying-default-treasury-symbol-cancellation-date-behavior/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cb09b4264071b50cd58b804468530e4a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">Larry.Baugh</media:title>
		</media:content>

		<media:content url="http://oraclefedapps.files.wordpress.com/2009/03/image001.png" medium="image">
			<media:title type="html">image001</media:title>
		</media:content>

		<media:content url="http://oraclefedapps.files.wordpress.com/2009/03/image003.png" medium="image">
			<media:title type="html">image003</media:title>
		</media:content>

		<media:content url="http://oraclefedapps.files.wordpress.com/2009/03/image005.png" medium="image">
			<media:title type="html">image005</media:title>
		</media:content>

		<media:content url="http://oraclefedapps.files.wordpress.com/2009/03/image007.png" medium="image">
			<media:title type="html">image007</media:title>
		</media:content>
	</item>
	</channel>
</rss>
