cursor back to the original record position
Jimmie_MJul 19 2010 — edited Jul 20 2010database:10gr2
forms:10.1.2.0.2
forms structure; A forms is a master-child structure. there are list items(data grid view) in the child.
In order to edit the record in the list items, selecting the record go to the edit form(B).
i want to go back to the original record position after editing the selected record
in the list items.
but cursor always go back to the first record after close the edit forms file(B edit form).
I tried the following;
when new block instance or when new validate record - inside child trigger
1.
SET_ITEM_INSTANCE_PROPERTY(:SYSTEM.CURSOR_ITEM,
VISUAL_ATTRIBUTE, CURRENT_RECORD, ’VA_CURR’);
2.
set_item_instance_property(:system.current_item,current_record)
3.
Go_record(:System.cursor_record);
it doesn't work. Cursor still go back to the first record after close the edit form(B)