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: 

how to print $ symbol in ALV outout

Former Member
0 Kudos
113

using ALV grid with function modules how to print $ symbol in output.

like $ 11.85 in ALV grid

please help me

4 REPLIES 4

Former Member
0 Kudos
80

hi Sapien,

One way to do this is to concatenate $ value to the field while looping the internal table ..

regards,

Santosh

Former Member
0 Kudos
80

Hi,

U have to [code]CONCATENATE '$' itab-curr INTO itab-curr.[/code]

itab-curr field should be CHAR type.

Then if u pass the values to output table it will dispaly.

Former Member
0 Kudos
80

take a character type field in itab.

loop at itab.

concatenate '$' itab-amt into itab-chamt.

modify itab.

endloop.

now in fieldcat just pass that itab-chamt field in place of itab-amt.

regards

shiba dutta

former_member181962
Active Contributor