Skip to Content
0
Nov 13, 2012 at 03:27 AM

Concatenate does not work

25 Views

Hello Experts,

I'm trying to add space with other three variables into gv_lined. For reference following is my code.

DATA: gv_lined(80) type c.

concatenate wa_inf0006S5-ORT01 ' ' wa_inf0006S5-STATE ' ' wa_inf0006S5-PSTLZ INTO gv_lined.

gv_lined should hold value like this (North Sydney 1120 NSW AU)

However, it ignore both spaces and store value as (North Sydney 1120NSWAU). Can anybody see what is the issue?

Many thanks in advance.