‎2008 May 12 8:14 PM
Hi,
How to append below words,
2004 and 12 and 12
i want output should be like this 2004/12/12
Please anyone help me on this
Thanks,
GAl
‎2008 May 12 8:18 PM
You can use
C_slash = '/'.
CONCATENATE var1 var2 var3 INTO var4 SEPERATED BY C_slash.
‎2008 May 12 8:18 PM
You can use
C_slash = '/'.
CONCATENATE var1 var2 var3 INTO var4 SEPERATED BY C_slash.
‎2008 May 12 8:20 PM
Like this...
data: lv_value(10) type c.
concatenate '2004' '/' '12' '/' '12' into lv_value.
Write:/ lv_value.but I would assume that you want to do this with some date field? if so..
data: lv_value(10) type c.
data: lv_date type sy-datum value '20041212'.
concatenate lv_date(4) '/' lv_date+4(2) '/'' lv_date+6(2) into lv_value.
Write:/ lv_value.Regards.
Rich Heilman
‎2008 May 12 8:21 PM