Application Development 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: 

problem with currency field on screens

Former Member
0 Kudos

hai gurus i am using currency field on screen , when i am trying to display 0.0 value on the screen it showing blank , how to display the value zero on the screen

thanx in advance

afzal

4 REPLIES 4

former_member386202
Active Contributor
0 Kudos

Hi,

Define that variable type P with 2 decimal places.

Regards,

Prashant

0 Kudos

yes i can do that but is ti not possible with currency type field

any alternate way to manipulate it before displaying

0 Kudos

Only solution is hard code it...


DATA : dummy type char4 value '0.00'.

IF currency EQ 0.
WRITE : dummy RIGHT-JUSTIFIED.
ENDIF.

Message was edited by:

Perez C

Message was edited by:

Perez C

0 Kudos

hai prez as u said it is possible in reports i want in module pool program , i tried to do it by writing to screen field it gives error that the screen field is not a character type

regards

afzal