HOW TO POPULATE A LIST ITEM FROM DATABASE TABLE: - TechRepublic
General discussion
December 13, 2012 at 02:17 AM
aadityainpccs

HOW TO POPULATE A LIST ITEM FROM DATABASE TABLE:

by aadityainpccs . Updated 13 years, 6 months ago

Hello..I want to ask that How to bind a list item with table values?
— This code at trigger when_new _block_instance does not fill the list item to populate……pls any body give me solution..

declare
group_id RecordGroup;
list_id Item:=Find_Item(‘LST_CLASS’);
status number;
begin
group_id:=Create_Group_From_Query(‘Answer_List’,’select CLASS_ID,CLASS_NM from CLASS_MSTR’);
status:=Populate_Group(‘Answer_List’);
message(to_char(status));
Populate_List(list_id,group_id);
en

This discussion is locked

All Comments