Doubt in List Item(Urgent) [message #85583] |
Sat, 10 July 2004 06:42  |
pratyusha
Messages: 8 Registered: July 2004
|
Junior Member |
|
|
Please tell me how to add values dynamically to a list item.
I have created a list item(t list) and assigned a value 1 at design time. i createda record group based on a table and tried to populate the list item with rec group using populate_list but it is only showing the value which i has added at designe time ..pleas tell me how to achive it
|
|
|
|
Re: Doubt in List Item(Urgent) [message #85604 is a reply to message #85583] |
Mon, 12 July 2004 19:02  |
Sunil
Messages: 132 Registered: September 1999
|
Senior Member |
|
|
Use "populate_list((list_name VARCHAR2, recgrp_name VARCHAR2).
this procedure removes the contents of the current list and then populates the list with the values from the record group.
The record group must be created at runtime and it must have the following two column (VARCHAR2) structure:
Column 1: the list label
Column 2: the list value
|
|
|