[stackoverflow] [progress Openedge Abl] Retriving Maillist Into One Field?

  • Thread starter Thread starter Lovely Bobby
  • Start date Start date
Status
Not open for further replies.
L

Lovely Bobby

Guest
I want to retrieve the mail list into one field and display the data retrieved?

Mail list is an array and I want all data to be in one field.

define variable i as integer no-undo.
define variable cmmt as long-character no-undo.
cmmt = " ".
for each cd_det no-lock
cd_ref = "test1"
and cd_type = "EL":
do i = 1 to extent(cd_cmmt):
else cmmt = cmmt + cd_cmmt.
end.
disp cmmt.
end.


I tried like this but I unable to display actually test1 record contains 2 mails (gangadhar.pichika-external@gemalto.com,balkrishna.talapalliwar-external@gemalto.com) but I didn't get that data in cmmt.

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