2023 Jan 05 6:30 AM
Hi Everyone,
The internal table contains contains field A,B,C,D
I need to remove the contain of D
suppose table has following entries:
A B C D
1 2 3 (blank)
4 5 6 .00
7 8 9 .00
0 6 1 (blank)
Requirement is to remove ".00" and keep it blank
How can this be achieved?
Thanks.
2023 Jan 05 7:11 AM
Hi,
The "blank" entries depend on the data type, since initial values are returned. Character-like types return blanks or empty strings while numeric types return 0.
You can find an overview here.
Best regards,
Lena
2023 Jan 05 7:55 AM
2023 Jan 05 8:22 AM
For deleting the values of a column, many answers are given, for example, here.