[Stackoverflow] [Progress OpenEdge ABL] Access temp-table "Label" attribute in Progress Openedge

Status
Not open for further replies.
S

slumtrimpet

Guest
I'm looking for a way to access "Customer Information" from the following temp-table definition:

Code:
/* Define the temp-table */
DEFINE TEMP-TABLE ttCustomer LABEL "Customer Information"
    FIELD CustNum AS INTEGER
    FIELD CustName AS CHARACTER
    FIELD CustCity AS CHARACTER.

/* Access the label attribute */
DISPLAY ttCustomer:LABEL.

I've tried various flavors of the above and can't figure out the magic combo.

Continue reading...
 
Status
Not open for further replies.
Top