Hello everybody.
I have PowerBuilder 8 and I'm migrating to 2017 R3.
Someone could indicate me If there is an easy way to show the Display Column of the Code Table when I save a datawindow as Excel? Now in PowerBuilder 8 is it possible? I have 1 column with Code Table, and when I save in Excel this column show de value saved on the database, but I need to see the Display Column.
Maybe the solution it's only in the newest version of PowerBuilder?
Thanks in advance.
Finally I used the external dwo.
To help other users, this is the exact line used to found the Display Value:
For i_row = 1 to dw_datos.RowCount()
dw_excel.SetItem(i_row, "dest_column", dw_datos.Describe("Evaluate('LookUpDisplay(orig_column)', " + String(i_row) + ")"))
dw_excel is the external dwo, and dw_datos is the original datawindow.
Regards.