Retrieves and stores the contents of the current list into the specified record group. The target record group must have the following two-column (VARCHAR2) structure:
Column 1: Column 2:
the list label the list value
Storing the contents of a list item allows you to restore the list with its former contents.
PROCEDURE RETRIEVE_LIST
(list_id ITEM,
recgrp_name VARCHAR2);
PROCEDURE RETRIEVE_LIST
(list_id ITEM,
recgrp_id RecordGroup);
PROCEDURE RETRIEVE_LIST
(list_name VARCHAR2,
recgrp_id RecordGroup);
PROCEDURE RETRIEVE_LIST
(list_name VARCHAR2,
recgrp_name VARCHAR2);
Built-in Type unrestricted procedure
Returns VARCHAR2
Enter Query Mode yes
/*
** Built-in: RETRIEVE_LIST
** Example: See POPULATE_LIST
*/