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!

How to populate a poplist through a record group?

684380Jun 15 2010 — edited Jun 15 2010
Dear People,
I use forms along with 10g.I have create a record group RG9 with query SELECT DNAME FROM DEPT;.now how to populate it to a list item?.i tried it using a the following code in When_new_form_instance trigger.The code is as follows,
declare
a number;
begin
	a:=populate_group('RG9');
               add_list_element('block3.list6',1,a,a);
end;
It doesnt throw me any error.but unable to populate data into the list. pls do help me to make corrections in the above code.

With Regards
VIDS
This post has been answered by Arif Khadas on Jun 15 2010
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 13 2010
Added on Jun 15 2010
8 comments
9,603 views