Please see the procedure below which I am using to populate the the record group.
I am facing problem with the variables used in the query string.
PROCEDURE populate_hr_list IS
rg_id RECORDGROUP :=NULL;
V_RG_NAME VARCHAR2(100);
V_STATUS NUMBER;
v_query varchar2(1000) :=NULL;
BEGIN
V_RG_NAME := 'hr';
CLEAR_LIST(:VARS.L1);
rg_id := FIND_GROUP(V_RG_NAME);
IF NOT ID_NULL(rg_id) THEN
DELETE_GROUP(rg_id);
END IF;
v_query := 'select '|| :vars.a||', '|| :vars.b||' from dual';
rg_id :=CREATE_GROUP_FROM_QUERY(
IF NOT ID_NULL(rg_id) THEN
V_STATUS := POPULATE_GROUP(rg_id);
POPULATE_LIST(:VARS.L1,rg_
END IF;
DELETE_GROUP(rg_id);
end;
Main Topics
Browse All Topics





by: flow01Posted on 2009-04-07 at 10:15:01ID: 24089643
to get the idea : can you give some examples of what should be dynamic and which variables are involved ?
In an record group you can refer to forms globals and block.items.