Consultor Eletrônico



Kbase P124501: ADM2: Static SmartDataBrowse does not display any columns if its first column is not from the first
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   19/06/2007
Status: Unverified

FACT(s) (Environment):

Windows
OpenEdge 10.1B01

SYMPTOM(s):

ADM2: Static SmartDataBrowse does not display any columns if its first column is not from the first temp-table of a DataView join.

CAUSE:

This is a known issue.

FIX:

The following workarounds are available:
1. Use a dynamic Browse object instead of the static SmartDataBrowse.
2. Customize the browser.p to add the required fields.
3. Override the initializeObject procedure of the SmartDataBrowse by setting its query to unknown before the RUN SUPER statement. For example:
/* Code placed here will execute PRIOR to standard behavior. */
BROWSE brTable:QUERY = ?.
RUN SUPER.
/* Code placed here will execute AFTER standard behavior. */