sdelhautal
New Member
I have a table with this kind of field:
ADD FIELD "MyField" OF "MyTable" AS character
FORMAT "x(10)"
INITIAL "P"
LABEL "MyLabel"
POSITION 25
SQL-WIDTH 20
VIEW-AS "VIEW-AS COMBO-BOX
LIST-ITEM-PAIRS ""Planned"", ""P"", ""Ordered"", ""O"", ""Filled"", ""F"",
""Complete"", ""C"", ""Distribute"", ""D"", ""History"", ""H"" "
LENGTH 0
ORDER 50
I have a loop on this table in a non-visual procedure:
for each MyTable no-lock:
put MyField "," .
end.
the result is something like:
P,O,F,C
but this result is wanted:
P,Planned,O,Ordered,D,Distribute
Is there somebody with a solution ?
ADD FIELD "MyField" OF "MyTable" AS character
FORMAT "x(10)"
INITIAL "P"
LABEL "MyLabel"
POSITION 25
SQL-WIDTH 20
VIEW-AS "VIEW-AS COMBO-BOX
LIST-ITEM-PAIRS ""Planned"", ""P"", ""Ordered"", ""O"", ""Filled"", ""F"",
""Complete"", ""C"", ""Distribute"", ""D"", ""History"", ""H"" "
LENGTH 0
ORDER 50
I have a loop on this table in a non-visual procedure:
for each MyTable no-lock:
put MyField "," .
end.
the result is something like:
P,O,F,C
but this result is wanted:
P,Planned,O,Ordered,D,Distribute
Is there somebody with a solution ?