Progress 4GL Column Names

Status
Not open for further replies.
T

thomasw_lrd

Guest
I'm having an issue with a a query I'm trying to run in 4GL.

This works

FOR EACH platte.item_branch NO-LOCK
WHERE item_branch.item_ptr = 23546:
DISPLAY
item_branch.system_id LABEL "bar" "|SEP|"
item_branch.item_ptr LABEL "foobar"
WITH WIDTH 122.
END.


And this doesn't

FOR EACH platte.item_branch NO-LOCK
WHERE item_branch.item_ptr = 23546:
DISPLAY
item_branch.system_id LABEL "minor" "|SEP|"
item_branch.load_factor LABEL "foobar"
WITH WIDTH 122.
END.


Is there anything in ABL that would cause a field to start with load_ to not work? I have confirmed that any field that starts with load_ will not return data. It will error out everytime.

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