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

___,___,__~.__V format for input field

Former Member
0 Likes
1,700

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,

7 REPLIES 7
Read only

Former Member
0 Likes
1,231

Goto your user data and see the currency format set for you. Try giving the same format or use some conversion.

Read only

0 Likes
1,231

This doesn't seems to be the problem. I have checked standard curr fields which have 2 decimals

but this has 3 decimals.

Read only

0 Likes
1,231

any clues?

Read only

Former Member
0 Likes
1,231

Hi,

Check the Field declaration and input value which you are giving on the screen.

Read only

Former Member
0 Likes
1,231

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.

Read only

0 Likes
1,231

these field is part of append structure in VBRP table. I cannot even select records in VBRP based on this field.

Thanks,

Read only

Former Member
0 Likes
1,231

Closing because of restriction of 10 questions