subscripciones
New Member
DEF TEMP-TABLE test
FIELD caption AS CHARACTER.
create test.
assign test.caption = "Microsoft".
create test.
assign test.caption = "Apple".
create test.
assign test.caption = "Oracle".
FOR EACH test no-lock.
DISPLAY test.caption.
END.
it's possible to sort a temp table?
output:
Apple
Microsoft
Oracle
Thanks
FIELD caption AS CHARACTER.
create test.
assign test.caption = "Microsoft".
create test.
assign test.caption = "Apple".
create test.
assign test.caption = "Oracle".
FOR EACH test no-lock.
DISPLAY test.caption.
END.
it's possible to sort a temp table?
output:
Apple
Microsoft
Oracle
Thanks