‎2011 Feb 17 9:56 AM
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
‎2011 Feb 17 3:53 PM
Hi,
Upto my knowledge we have to use conversion routines for this type of issue . for example Conversion_alpha_input or output.
Regards,
sridhar
‎2011 Feb 17 4:06 PM
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.
‎2011 Feb 18 6:00 AM
Thank you
I'm using standard Tcode CA02 to upload BDC data
Regards
Silu