Adding fields to temp table

hw do i add fields to a temp table after it has been defined with some fields .

I am working in PROGRESS Procedure Editor Version 9.1D09 POSSE Version 2.0
 
hw do i add fields to a temp table after it has been defined with some fields .

I am working in PROGRESS Procedure Editor Version 9.1D09 POSSE Version 2.0


DEFINE TEMP-TABLE ttTask NO-UNDO
FIELD tSubject AS CHARACTER
FIELD tPriority AS CHARACTER
FIELD tStatus AS CHARACTER
FIELD tStartDate AS CHARACTER
FIELD tStartTime AS CHARACTER
FIELD tEntryId AS CHARACTER.


Define that in your deffinitions and just add them as you need more and once you get that then you can call it like a regular table
 
Back
Top