<?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: Making a list of values context-sensitive using forms personalization.</title>
	<atom:link href="http://bloggingaboutoracleapplications.org/making-a-list-of-values-context-sensitive-using-forms-personalization/feed/" rel="self" type="application/rss+xml" />
	<link>http://bloggingaboutoracleapplications.org/making-a-list-of-values-context-sensitive-using-forms-personalization/</link>
	<description>Everything about Oracle...and it's applications!</description>
	<lastBuildDate>Fri, 30 Jul 2010 10:02:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Corné</title>
		<link>http://bloggingaboutoracleapplications.org/making-a-list-of-values-context-sensitive-using-forms-personalization/comment-page-1/#comment-7952</link>
		<dc:creator>Corné</dc:creator>
		<pubDate>Tue, 24 Mar 2009 11:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingaboutoracleapplications.org/making-a-list-of-values-context-sensitive-using-forms-personalization/#comment-7952</guid>
		<description>Hi,

I don&#039;t know if this is possible. 
What you could try is adjusting the query to this:
SELECT lo.lookup_code meaning,
lo.meaning lookup_code
FROM ar_lookups lo
WHERE lo.lookup_type = ‘LEGAL_STATUS’
and sysdate between lo.START_DATE_ACTIVE and nvl(lo.END_DATE_ACTIVE,sysdate)
and enabled_flag = ‘Y’
and exists (select 1
from AMS_ORG_PROFILES_V
where legal_status =lo.lookup_code )
order by lo.meaning

but I do not know if this will work.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I don&#8217;t know if this is possible.<br />
What you could try is adjusting the query to this:<br />
SELECT lo.lookup_code meaning,<br />
lo.meaning lookup_code<br />
FROM ar_lookups lo<br />
WHERE lo.lookup_type = ‘LEGAL_STATUS’<br />
and sysdate between lo.START_DATE_ACTIVE and nvl(lo.END_DATE_ACTIVE,sysdate)<br />
and enabled_flag = ‘Y’<br />
and exists (select 1<br />
from AMS_ORG_PROFILES_V<br />
where legal_status =lo.lookup_code )<br />
order by lo.meaning</p>
<p>but I do not know if this will work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RT</title>
		<link>http://bloggingaboutoracleapplications.org/making-a-list-of-values-context-sensitive-using-forms-personalization/comment-page-1/#comment-7838</link>
		<dc:creator>RT</dc:creator>
		<pubDate>Fri, 20 Mar 2009 17:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingaboutoracleapplications.org/making-a-list-of-values-context-sensitive-using-forms-personalization/#comment-7838</guid>
		<description>I have a field that displays the lookup_code instead of meaning but i want to display the meaning and i am not abe to change the query. Any help is appreciated.
SELECT lo.lookup_code,
       lo.meaning
  FROM ar_lookups lo     
 WHERE lo.lookup_type = &#039;LEGAL_STATUS&#039;
  and sysdate between lo.START_DATE_ACTIVE and nvl(lo.END_DATE_ACTIVE,sysdate)
  and enabled_flag = &#039;Y&#039;    
  and exists (select 1
              from AMS_ORG_PROFILES_V
              where legal_status =lo.lookup_code )
order by lo.meaning
Thanks
R</description>
		<content:encoded><![CDATA[<p>I have a field that displays the lookup_code instead of meaning but i want to display the meaning and i am not abe to change the query. Any help is appreciated.<br />
SELECT lo.lookup_code,<br />
       lo.meaning<br />
  FROM ar_lookups lo<br />
 WHERE lo.lookup_type = &#8216;LEGAL_STATUS&#8217;<br />
  and sysdate between lo.START_DATE_ACTIVE and nvl(lo.END_DATE_ACTIVE,sysdate)<br />
  and enabled_flag = &#8216;Y&#8217;<br />
  and exists (select 1<br />
              from AMS_ORG_PROFILES_V<br />
              where legal_status =lo.lookup_code )<br />
order by lo.meaning<br />
Thanks<br />
R</p>
]]></content:encoded>
	</item>
</channel>
</rss>
