FRM-40102 record must be entered --- error [message #160814] |
Tue, 28 February 2006 08:08 |
kamran.it
Messages: 265 Registered: September 2005 Location: Karachi
|
Senior Member |
|
|
I write a cursor in button trigger "when button press: :-
declare
CURSOR post_wo
IS
select pp_dpkd.c_code,pp_dpkd.kgs
from pp_dpkd
where ppno=:ppno;
mc_code pp_dpkd.c_code%type;
mkgs pp_dpkd.kgs%type;
begin
open post_wo;
loop
fetch post_wo into
mc_code,mkgs;
exit when post_wo%notfound;
go_block('wosub');
create_record;
end loop;
close post_wo;
end;
when I run form and click on button shows the msg:-
FRM-40102 Record must be entered or deleted first.
|
|
|
|
|
|
|
|
Re: FRM-40102 record must be entered --- error [message #161089 is a reply to message #161088] |
Wed, 01 March 2006 23:11 |
|
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
Kamran,
This site doesn't work that way. You post your requirements and I will respond, but so may other people. If you have a confidential document you would like me to read then let me know via PM (Private Messaging) and I will give you an email address to which you can send it. If it is not confidential then just attach it to a post and those of us who are interested can download it, read it, and offer you suggestions.
David
|
|
|