cancel
Showing results for 
Search instead for 
Did you mean: 

insert an additional word

Former Member
0 Kudos

Hi!

How can I insert the word AND between i_selcrit_ipeva-IALPREPID and into correctly ?

cl_and_string ' IALREPID LIKE '''
                 i_selcrit_ipeva-IALPREPID ''''  into e_cond_tab.

Regards

bye

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi bit modification to my above code.

CONCATENATE VFILE i_selcrit_ipeva INTO V_FILE.

WFILE = 'AND'.

CONCATENATE UFILE IALPREPID INTO V_FILE.

CONCATENATE V_FILE WFILE UFILE INTO V_FILE.

try this i think it will work else revert me back.

Hope my answers helps you.

Cheers!!

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You can do achieve this by concatenating the i_selcrit_ipeva-IALPREPID placeing AND in between them.

I will give an example follow that

CONCATENATE VFILE i_selcrit_ipeva INTO V_FILE.

CONCATENATE UFILE IALPREPID INTO V_FILE.

VFILE = 'AND'.

CONCATENATE V_FILE VFILE INTO V_FILE.

try this i think it will work else revert me back.

Hope my answers helps you.

Cheers!!