Selecting a record after insertion

I'm working on a database with 2,000+ entries. When I save a new record, it disappears in a sea of records, and I have to search for it.

I've tried opening BizForm.php and editing SaveRecord, doing those:

$this->GetDataObj()->SetActiveRecordId($recArr["Id"]);
$this->m_ActiveRecord = $recArr; 
$this->UpdateActiveRecord($this->GetDataObj()->GetActiveRecord());
$this->SetDisplayMode(MODE_R);

return $this->ReRender();
 

It doesn't work. Tips, anyone?

 Switching the display mode

 Switching the display mode to EDIT after the insertion did not work for me, but I've managed to fix it my way, thanks.

This is the issue that can

This is the issue that can be resolved in Openbiz Cubi where after inserting a record, user is taken to record detail page

For Openbiz 2.2, you might set display mode to EDIT after the insertion.

- support