‎2006 Aug 31 11:46 PM
hey folks,
I am trying to update the MBEW-stprs in MM01 value thru BDC, first it gave me a short dump on more analysisi i found that i would not except decimal values or quantity values,ad BDCDATA-FVAL is char specicific,, so i declared a temp variable converted the decimal to char format,, adn tried to store this value in perfrom bdc FVAL MBEW-STPRS,, but its goin on giving a message that eneter numeric value.
so the material number is not created.....
please help me to change the material, number.
‎2006 Sep 01 12:06 AM
Hi,
Use the WRITE statement from converting the decimal values to character.
WRITE V_PRICE TO BDC_DATA-FVAL.
Thanks,
Naren
‎2006 Sep 01 12:05 AM
You should be able to use statement WRITE to pass teh value of a CURR type variable to a CHAR one. This way, you would get the proper formatting.
Hope it helps.
Leonardo De Araujo
‎2006 Sep 01 12:05 AM
Check if the amount has , in it. We need to remove all special characters.
‎2006 Sep 01 12:06 AM
Hi,
Use the WRITE statement from converting the decimal values to character.
WRITE V_PRICE TO BDC_DATA-FVAL.
Thanks,
Naren