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

Data type for decimal value

Former Member
0 Likes
762

I am making my own database table.which data type shuld I use to display decimal values.I used FLTP but its display is not very clear.

My values are like1234.56

Thanks

6 REPLIES 6
Read only

Former Member
0 Likes
704

Hi,

Use DEC

Read only

Former Member
0 Likes
704

Hi,

Declare it as DEC datatype of length and decimal places as per your requirement.

Regards,

Raghu

Read only

Former Member
0 Likes
704

assign decimal place while creating domine.

as per ur req.....

if it is usefulll.Plz Reward

Regards

Anbu

Read only

former_member386202
Active Contributor
0 Likes
704

Hi,

Declare it as type P with decimals 2.

Data : l_amt type p decimals 2.

Regards,

Prashant

Read only

Former Member
0 Likes
704

use CURY type , this will give decimal points also.

Read only

Former Member
0 Likes
704

Hi,

You can use CURR data type decimals 2.

Thanks,

Sriram Ponna.