Home » Developer & Programmer » Forms » Problem at time of navigation (oracle 8 i,forms 6i, windows xp)
Problem at time of navigation [message #493813] Thu, 10 February 2011 02:16 Go to next message
zahidbutt
Messages: 13
Registered: January 2011
Location: Lahore
Junior Member
I have developed customer entry form, its working fine. I have 2 display items on form. One is country name & other is region, these are fetched based on country id LOV.

Now I want to display country name & region at time of navigation.
I have written following code on WHEN_NEW_RECORD_INSTANCE of block.
******
DECLARE
CCNTRY_ID VARCHAR2(2);
CCNTRY_NAM VARCHAR2(25);
CREGION VARCHAR2(11);
begin
select cntry_nam,region into ccntry_nam,cregion from cntry where cntry_id=ccntry_id;

exception
when no_data_found then
message('NO DATA FOUND');
end;
**********
I always get message not data found on navigation. Problem is only with the display item other, values of database columns are
being shown.

thanks in advance
Re: Problem at time of navigation [message #493819 is a reply to message #493813] Thu, 10 February 2011 02:34 Go to previous messageGo to next message
Littlefoot
Messages: 21818
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
INTO should contain block items, I guess.

What is result of the same query when you run it in SQL*Plus?
select cntry_nam,
       region 
from cntry 
where cntry_id = ccntry_id;

Re: Problem at time of navigation [message #493847 is a reply to message #493819] Thu, 10 February 2011 03:45 Go to previous messageGo to next message
cookiemonster
Messages: 13938
Registered: September 2008
Location: Rainy Manchester
Senior Member
You haven't populated ccntry_id, so it's null, so there will be no matches.
Re: Problem at time of navigation [message #493860 is a reply to message #493813] Thu, 10 February 2011 04:22 Go to previous message
zahidbutt
Messages: 13
Registered: January 2011
Location: Lahore
Junior Member
Thanks for help I have done it.

Regards
Previous Topic: FRM 10256
Next Topic: Oralcle 10g forms do not show any thing in explorer
Goto Forum:
  


Current Time: Tue Sep 17 16:26:15 CDT 2024