Recordview [examples]

Save the status of the currently active workarea to a memory variable 
SAVE_RECORDVIEW
procedure check_value
  save recordview to m_recv
  // Validate data
  restore recordview from m_recv
return

https://www.lianja.com/doc/index.php/SAVE_RECORDVIEW


Restore a previously saved workarea status 
RESTORE_RECORDVIEW

 

procedure check_value
  save recordview to m_recv
  // Validate data
  restore recordview from m_recv
return