[Stackoverflow] [Progress OpenEdge ABL] Can I name a temp-table field from the value of a variable?

Status
Not open for further replies.
J

Joseph Betts

Guest
Hello Progress4GL Developers,

Is it possible to name a field in a temp-table from the value of a parameter.

For example let's assume I have a variable set with value "fieldname":

define variable randomvariable as character initial "fieldname" NO-UNDO.


Now, I would like to do something like this (the below code doesn't work):

define variable randomvariable as character initial "fieldname" NO-UNDO.

define temp-table tt_table
field VALUE(randomvariable) AS CHARACTER.


Many Thanks in Advance!

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