Kbase P22965: How to always add to the last possible row in a browse.
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  25/11/2003 |
|
Status: Unverified
GOAL:
How to always add to the last possible row in a browse.
FIX:
This assigns the current row to the last record in the results list then does an insert after.
Syntax example;
DO:
IF NUM-RESULTS("browse-1") GT 0 THEN
browse-1:SELECT-ROW(NUM-RESULTS("browse-1")).
Browse-1:INSERT-ROW("After").
END.