Delete item from list
How do I delete the last item from a list which is part of a record block and get the defaulted item to be the first one which is a null element ?
Here's my code:
v_loc := get_list_element_count('RC_DENOMINATION');
delete_list_element('RC_DENOMINATION', v_loc);
:RC_DENOMINATION:=NULL;
In this, only the first record gets defaulted to null. The rest of the records get defaulted to the last element.
Please help out.
Thanks.