Use the passed ID to Fetch the record in the window manager Init method after the tables are open.
The set the browse StartAtCurrent = true after the browse INIT call, also in the window manager Init method.
Depending on your requirements: If you already have the record fetched, and you’re looking to use the browse as a selector, you don’t have to do anything in the browse procedure itself.
Just set GlobalRequest.
GlobalRequest = SelectRecord
MyBrowseProc() ! Should automatically select the record
IF GlobalResponse = RequestCompleted
RespondToNewSelection()
END