2007 Feb 28 9:18 AM
using ALV grid with function modules how to print $ symbol in output.
like $ 11.85 in ALV grid
please help me
2007 Feb 28 9:20 AM
hi Sapien,
One way to do this is to concatenate $ value to the field while looping the internal table ..
regards,
Santosh
2007 Feb 28 9:21 AM
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.
2007 Feb 28 9:21 AM
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
2007 Feb 28 9:22 AM
Refer this link:
http://help.sap.com/saphelp_erp2004/helpdata/en/ff/4649baf17411d2b486006094192fe3/frameset.htm
Regards,
Ravi