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

Former Member
0 Likes
416

Hi Experts

Pls help me to declare the data type of a variable

Decimal with length =10

Decimal places = 3

Data : amt like KONV-KKURS. * But its decimal places = 5

How to declare this data type.

Pls help me.

Regards

Rajaram

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
391

Plz Declare Like this .

data: amt(13) type P decimals 3.

Awards points if useful.

Regards

3 REPLIES 3
Read only

Former Member
0 Likes
392

Plz Declare Like this .

data: amt(13) type P decimals 3.

Awards points if useful.

Regards

Read only

Former Member
0 Likes
391

data: amount(13) type P decimals 3.

Regards

Read only

0 Likes
391

Hi

I am getting only 2 decimal places even i declared decimals 3.

what could be the reason actually.

Regards

Rajaram