Hi,
I am working on a smartform in which i have to display the 3 values i.e. condition type i.e. ZING,ZRO1,ZGRD.
I am able to fetch the data and displaying it in the smartform but the problem is that when i am displaying it in the smartform it is showing a space in between of the value .
ex, (G) 4521.11 where as i want to display the value as (G) 4521.11.
I am using the concatenate function but it is giving more space.
Here's d code which i am using to display the value of it :-
move item-rate to vrate.
move item-rate1 to vrate1.
if item-rate2 <> 0.
MOVE ITEM-RATE2 TO BBB.
move item-rate2 to vrate2 .
CONCATENATE '(G)'VRATE2 BBB INTO BBB.
shift BBB left deleting leading space.
endif.
move item-rate3 to vrate3.
shift vrate left deleting leading space.
shift vrate1 left deleting leading space.
shift vrate3 left deleting leading space.
Here,BBB is also defined in the global definitions of the smartforms as :-
BBB TYPE C LENGTH 10
Plzz provide me guidelines to solve this problem.