List population - Urgent [message #79327] |
Sun, 26 May 2002 13:25  |
Anoop Joseph
Messages: 1 Registered: May 2002
|
Junior Member |
|
|
Hello,
I have a poplist which I am populating, in NEW_FORM_INSTANCE, using Record Group. But when I am running the Form, I ma getting error: FRM-41337, unable to populate the list. I tried deleting and adding the list again, giving initial value...etc. The strange thing is that it was working fine previously and suddenly this error popped up..
Please help..
Thanks in advance..
Anoop Joseph
|
|
|
Re: List population - Urgent [message #79487 is a reply to message #79327] |
Sat, 15 June 2002 02:38  |
Ani
Messages: 56 Registered: November 2000
|
Member |
|
|
Hi Anoop,
pls try this.
create a record group.
eg. select empno,empno from emp.
u should have it repeated twice.
In when-new-form-instance put this code
declare
n number;
begin
n:=populate_group('rg_id');
populate_list('lst_name','rg_id');
end;
Pls try and mil back.
all the best
bye
Ani
|
|
|