Resolved Browser reposition fails sometimes

Armando Lopasso

New Member
Has anyone seen issues with the reposition of a browser after the refresh?

The following code sometimes gives me an error 7331. (Cannot reposition query br_table to recid/rowid(s) given.)

Code:
find first tt-bpeldisp 
  where tt-bpeldisp.cono = g-cono
  and tt-bpeldisp.bpid = cBPID
  and tt-bpeldisp.revno = iRevNo
  and tt-bpeldisp.lineno = pv-repoLineNo no-lock no-error.
if avail tt-bpeldisp then
do:
  reposition br_table to rowid rowid(tt-bpeldisp).
  br_table:select-focused-row().
end.



Sometimes the reposition does not work even though the temp-table record is available and it is displayed on the browser.
 
Top