2008 Feb 12 12:37 PM
Hi Experts,
Iam getting one file in which am having amount field(KONP-kbetr).I have to take that field and i have to add that one in tables A914,Konp by calling the transaction vk11 for this am using the BDC
while passing the value for the amount field as type c it is inserting properly in the tables.if I am using the type of KONP-kbetr or type p length 11 decimals 2 then the value is inserting as '0'
Can u help me on this.
Hi Experts,
Iam getting one file in which am having amount field(KONP-kbetr).I have to take that field and i have to add that one in tables A914,Konp by calling the transaction vk11 for this am using the BDC
while passing the value for the amount field as type c it is inserting properly in the tables.if I am using the type of KONP-kbetr or type p length 11 decimals 2 then the value is inserting as '0'
Can u help me on this.
2008 Feb 12 12:41 PM
BDC takes only character field. AS BDCDATA-FVAL is of character 132. So we need to convert each field to character field before passing to BDC.
2008 Feb 12 12:42 PM
Hello give the variable type as shown below and try it out it
will take amount
ex: AAA type RV13A-KONWA
Reward points if u success with it.