Yasser Oracle Blog
Dive in Oracle with Yasser,
Oracle Developer Courses
Pages
▼
Thursday, September 10, 2015
Oracle example for record group
declare
list_id item;
rg_id recordgroup;
BEGIN
if :global.employeeid='2222' then
list_id:=find_item('EMPLOYEEID');
rg_id:=find_group('RECORD_GROUP44');
CLEAR_LIST(list_id);
POPULATE_LIST(list_id, 'rg_id');
end if;
end;
No comments:
Post a Comment