FRM-40105:UNABLE TO RESOLVE REFERENCE TO ITEM [message #172322] |
Tue, 16 May 2006 01:05 |
ramanajv1968
Messages: 168 Registered: December 2005 Location: HYDERABAD
|
Senior Member |
|
|
Hi ,
I created a login screen that allows users to input a username and password. If the password is inserted and is correct they move onto another canvas if not then it brings up an alerts stating that the password is wrong or username.
for that i wrote the following code,
select 'x' into :global.dummy
from users
where user_name = :users.user_name
and user_password = :users.user_password;
message('Username and password are correct ');
go_item('ADMIN_CANVAS')
exception
when no_data_found then
message('Username and/or password are incorrect');
raise form_trigger_failure;
WHEN I PRESS THE BUTTON ,IT IS GIVING THE FOLLOWING ERROR,
FRM-40105:UNABLE TO RESOLVE REFERENCE TO ITEM ADMIN_CANVAS.
But, i created ADMIN_CANVAS in canvas even though i am getting the error.
Please help me.
Thanks ,
ramana
|
|
|
|