‎2009 Jun 15 3:22 PM
Hi ,
I have a Z Field which is type Currency with 11 dec and 3 decimals. I have to use this field as parameters in my report. but when I entered something like 25.560 and run the report its throwing an error as input must be in the format ___,___,__~.__V the message number for this is
Message no. 00088
Can some one please help me in this regard.
Thanks,
‎2009 Jun 15 3:40 PM
Goto your user data and see the currency format set for you. Try giving the same format or use some conversion.
‎2009 Jun 15 4:00 PM
This doesn't seems to be the problem. I have checked standard curr fields which have 2 decimals
but this has 3 decimals.
‎2009 Jun 15 4:32 PM
‎2009 Jun 15 3:42 PM
Hi,
Check the Field declaration and input value which you are giving on the screen.
‎2009 Jun 15 4:49 PM
Define your parameters as type P and transfer value to Z field in order to use in your report.
PARAMETERS : p_curr(11) TYPE p DECIMALS 3.
DATA : t_curr TYPE zcurr. "Here zcurr is dataelement of your Z field
t_curr = p_curr.
‎2009 Jun 16 2:21 PM
these field is part of append structure in VBRP table. I cannot even select records in VBRP based on this field.
Thanks,
‎2009 Jul 10 2:26 PM