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: 

Issue with Condition Amount field of Sales Order

Former Member
0 Kudos

Hi All,

The line item vlaue in sales order (KONV-KBETR) has been maintatined as 35.00 USD.

Now our customer is requesting to get the facility of storing this value as 35.12345 USD.

The decimals should be in 5 digits.

But the field KONV-KBETR is having 2 decimals.

How to resolve this issue, so that we can provide user to store condition values with 5 decimals values...

Its lilttle urgent........

Your help will be apprciated...

Regards

Pavan

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Pavan,

I Checked the same with SD consultant he said it is not possible, even if you convert finally the field will have only rounded value

otherwise you need to change the field by getting the access key for the same

Regards

Shiva

3 REPLIES 3

former_member223537
Active Contributor
0 Kudos

You can create another Z table & maintain the values.

Since the payment is alwyz going to be in 2 decimal places, the significance of 5 digits is only for storing purpose & not for payment purpose.

Former Member
0 Kudos

Hi Pavan,

I Checked the same with SD consultant he said it is not possible, even if you convert finally the field will have only rounded value

otherwise you need to change the field by getting the access key for the same

Regards

Shiva

Former Member
0 Kudos

Hi,

Try like this,

Move the value in KONV-KBETR into a variable of type p decimal 5.

just look at the below code, copy paste and test the below code..

tables: konv.

data: amt type p decimals 5.

konv-kbetr = 35.

amt = konv-kbetr.

write:/ amt.

Hope this helps.