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: 

BDC Issue in passing quantity

Former Member
0 Kudos

Hi,

While passing quantity value in a BDC how to make the value consistent with respect to the decimal notations. For example the BDC is recorded with point as decimal notation. But when the user login defaults has point as the thousand seperator the value that gets passed would be different. Is there any standard way this could be done instead of reading the user defaults and converting the value while passing to BDC?

Regards

Ram

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

Using write statment we can format the amount to user specific format.

Regards,

janakiram.

3 REPLIES 3

GauthamV
Active Contributor
0 Kudos

Just define the quantity field like this.

data : menge(13) type c.

Former Member
0 Kudos

hi Ram

Before passing the recorded data to the bdc structure just you have to write a statement

Write:/ x into y.

lets say you get the value from the recording 102.33 and you have to pass the value like 102,33

Thanks

Manas

Former Member
0 Kudos

Hi

Using write statment we can format the amount to user specific format.

Regards,

janakiram.