Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

CONCATENATE

Former Member
0 Kudos

Hi

i can use this statement CONCATENATE : sy-uline into I_IFILE-TEXT.

his will work. help me.

regards,

sivakumar

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Siva,

This will give an error in a concatenate there must be atleast two variables should be concatenated.

CONCATENATE sy-uline 'a' into I_IFILE-TEXT.

regards,

Navneeth.K

4 REPLIES 4

former_member588853
Active Contributor
0 Kudos

HI,

what are you concatenating?

CONCATENATE : sy-uline into I_IFILE-TEXT

This is just moving Sy-uline into some text. This will not work you have to cancatenate two or more values..

Syntax:

CONCATENATE 'Errors' ':' lv_msgtxt 'in' lv_locno

INTO gv_text SEPARATED BY space.

GV_TEXT is a variable it stores 'Errors : message in lt09'.

reward if useful..

regards,

nazeer

Former Member
0 Kudos

Hi Siva,

This will give an error in a concatenate there must be atleast two variables should be concatenated.

CONCATENATE sy-uline 'a' into I_IFILE-TEXT.

regards,

Navneeth.K

0 Kudos

syntax of concatenate?

Former Member
0 Kudos

Siva,

Concatenate with one value will not work. For this

CONCATENATE : sy-uline ' ' into I_IFILE-TEXT.

CONDENSE I_IFILE-TEXT.

Don't forget to reward if useful.