‎2009 May 28 9:28 AM
Hi All,
I need spaces between variables:
matnr space - space vbeln something like this...
how do i achieve this?
‎2009 May 28 9:32 AM
Hi,
write like this
concatenate matnr '-' vbeln into x separated by space.Regards,
Pankaj
‎2009 May 28 9:32 AM
Hi,
write like this
concatenate matnr '-' vbeln into x separated by space.Regards,
Pankaj
‎2009 May 28 9:32 AM
Hi Poonam,
Try this for your requirement.
write : matnr ' ' vbeln.
Hope this works out.
Regards,
Abhinab Mishra
‎2009 May 28 9:46 AM
Hi
I would suggest you to make use of CONCATENATE to achive this.
First concatinate matnr and vblen into a local variable and then display that variable to the user.
SYNTAX:
CONCATENATE matnr vblen INTO result SEPARATED BY space.
Regards
Gaurav
‎2009 May 28 10:02 AM
concatenate MATN '-' VBELN into FINAL separated by space.
Hope it will helps you.
‎2009 May 28 10:10 AM
Hi,
You can concatenate the varibles giving space, hifen, space like ' - '.
concatenate var1 ' - ' var2 into field1.
Regards
Sabu
‎2009 May 28 10:12 AM
Check this.
Data : matnr type mara-matnr value'0010000000',
vbeln type vbak-vbeln value '0020000000'.
data: var(30) type c.
concatenate matnr '-' vbeln into var separated by space.
write: var.
‎2009 May 28 10:58 AM
‎2009 May 28 11:03 AM
Hi,
Concatenate with space is the best option.
Else you can also try this.
Declare a final_var and then concatenate
data: final_var(30) type c.
concatenate matnr '-' vbeln into final_var
Regards
Ramesh Sundaram