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

BDC quantity upload error

Former Member
0 Likes
616

Hi

Need help in BDC.

In BDC I am passing 20.000

But when I see in table its values as 20.0000,000 instead of this value it should be 20,000

Table is PLPO and field VGW02. VGW02 properties are decimal places 3 no of characters 9.

Can anyone please help me to solve this issue, how can i proceed to get the value 20,000 when i pass 20.000. I can't do user settings

Regards

Silu

3 REPLIES 3
Read only

Former Member
0 Likes
572

Hi,

Upto my knowledge we have to use conversion routines for this type of issue . for example Conversion_alpha_input or output.

Regards,

sridhar

Read only

Former Member
0 Likes
572

why don't you use WRITE TO and then move the result to your BDC data... check out the sample code like below

data: v_vgw02 TYPE plpo-vgw02.

data: v_char TYPE char11.

WRITE V_VGW02 to v_char DECIMALS 3.

Read only

0 Likes
572

Thank you

I'm using standard Tcode CA02 to upload BDC data

Regards

Silu