Application Development and Automation 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: 
Read only

Decimal notation problem when downloading

Former Member
0 Likes
1,612

Hi,

I hava report wich downloads the data to excel file. The decimal notation for data is for gemna. ( COmma instead of dot and dot instead of comma). I have changed in user profile also. But when downloading to excel its downloading in default decimal notation. which is opposite format.

This should be for all quantity fields

Thanks

Kishore B A

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
933

Hi Kishore,

Let me tell you the solution.

Change the declaration of the final table field name to Char(10). It will automatically show you the correct format in the output.

Thanks,

Chidanand

2 REPLIES 2
Read only

Former Member
0 Likes
934

Hi Kishore,

Let me tell you the solution.

Change the declaration of the final table field name to Char(10). It will automatically show you the correct format in the output.

Thanks,

Chidanand

Read only

VikasB
Active Participant
0 Likes
933

Hi Kishore,

Use the String / Char variable in your final internal table which you are downloading to excel sheet. Then use WRITE statement to output the quantity field into this variable.

e.g.

WRITE g_quantity to g_string LEFT JUTIFIED.

This will automaticaly convert the quantity to the user format.

Regards,

Vikas.