Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Encountered an issue with ALV Object Model

Former Member
0 Kudos

I have a problem with exporting a grid built with CL_SALV_TABLE to a CSV-file for import into Excel.  On a row with multiple negative values, the first negative is shown in the generated .txt file.  Subsequent negative values are written to the file as positive.


I have resolved the program problem by building the grid with CL_GUI_ALV_GRID.

Has anyone else run into this one?

1 ACCEPTED SOLUTION

former_member205763
Active Contributor
0 Kudos

I think you would need to use method set_sign to have it correctly downloaded subsequently

2 REPLIES 2

former_member205763
Active Contributor
0 Kudos

I think you would need to use method set_sign to have it correctly downloaded subsequently

0 Kudos

Thank you, Kartik.  I will use CL_SALV_COLUMN->set_sign and determine whether this corrects the problem.