Kbase P12142: No XREF information available for Temp-tables/Worktables
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  13/10/2004 |
|
Status: Verified
SYMPTOM(s):
No XREF information available for Worktables
No XREF information available for buffers against Temp-tables
XREF only outputs information on Shared Temp-tables
CAUSE:
Enhancement request#19971217-022
FIX:
This enhancement has not been implemented in the product.
There are two possible workarounds available for this issue:
1. Put the FIND, CREATE, DELETE, etc, statements for the temp-table/worktables in a PROCEDURE i.e:
DEF TEMP-TABLE test1 LIKE customer.
PROCEDURE test:
FIND FIRST test1 NO-ERROR.
CREATE test1.
DELETE test1.
END PROCEDURE.
2. Define the temp-tables/worktables as (NEW) SHARED.
DEF NEW SHARED TEMP-TABLE tt FIELD cc AS INTEGER.
DEF SHARED BUFFER btt FOR tt.