Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

FRM-30351: No list elements defined for list item.

426123Aug 4 2004 — edited Aug 5 2004
Hello!

i have a list_item with name NOMBRE and in a NEW_FORM_INSTANCE trigger i have the following pl/sql block to populate it:

declare
grp_producto recordgroup := find_group('RECORD_PRODUCTO');
lst_item item := find_item('PRODUCTO.NOMBRE');
status number;
begin
status := populate_group(grp_producto);
clear_list(lst_item);
populate_list(lst_item,grp_producto);
end;

when i run the form, this message appear
FRM-30351: No list elements defined for list item.
List NOMBRE
and the list appear without elements
...can somebody explain me the solution or if i have to do another thing to populate the list?

Thanks
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 2 2004
Added on Aug 4 2004
7 comments
4,988 views