[Stackoverflow] [Progress OpenEdge ABL] How to list all lines in a field with Progress 4GL

Status
Not open for further replies.
T

Trey

Guest
An address field in a Progress database evidently is multiple lines. So if I do something simple like:

Code:
for each customer where customer-number = "123" no-lock.

display customer-number
        customer-name
        customer-address.

I get results of:

Code:
123  John Smith  123 Easy St.
                 c/o Jane Smith
                 Apartment C12

I want results of:

Code:
 123  John Smith  123 Easy St.  c/o Jane Smith  Apartment C12

I've tried Entry - but get an error if an element does not exists. I am trying to export to CSV and want each line to be another column and if a column does not exists then it is blank.

Any help will be MUCH appreciated!

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