Consultor Eletrônico



Kbase P79921: Roundtable workspace treeveiw can not display more than 100 modules
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   16/10/2008
Status: Unverified

FACT(s) (Environment):

Roundtable 9.x
Roundtable 9.1D SP1

SYMPTOM(s):

Roundtable workspace treeveiw can not display more than 100 modules

CAUSE:

This is a bug on the Roundtable 9.1D SP1 code. The Roundtable 'rows-to-batch' property is set to 100 for that particular SmartDataObject.

FIX:

Modify the procedure 'rtb_events.p'. In the procedure 'evRtbUserEvent' add the following:

IF Muse-legacy THEN DO:
...
END.
ELSE DO:
IF Pevent = "roundtableStartup":U THEN DO:
DEFINE VARIABLE MhModSdo AS HANDLE NO-UNDO.
PUBLISH "evRtbGetModSdoHandle":U (OUTPUT MhModSdo).
DYNAMIC-FUNCTION('setRowsToBatch' IN MhModSdo,200). <--- rowsToBatch
END.
END.