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: 

format within concatenate

Former Member
0 Kudos

Hello!

How can I make spaces or line breaks within concatenate.

The reason I'm asking is the string will be given to the

POPUP_TO_CONFIRM function as parameter.

THX

Ilhan


concatenate 'Date:  '  gv_dat into gv_datout.
concatenate 'Time :  '  gv_out into gv_timout.
concatenate gv_datout gv_timout into <b>gv_mes</b>.

CALL FUNCTION 'POPUP_TO_CONFIRM'
  EXPORTING
    TEXT_QUESTION               = <b>gv_mes</b>
......

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Ertas,

do this way ..


concatenate 'Date:  '  gv_dat into gv_datout <b>separated by space.</b>
concatenate 'Time :  '  gv_out into gv_timout separated by space.

concatenate gv_datout gv_timout into <b>gv_mes</b>. <b>separated by ' '</b> .

Regards,

Santosh

Message was edited by:

Santosh Kumar Patha

2 REPLIES 2

Former Member
0 Kudos

Hi Ertas,

do this way ..


concatenate 'Date:  '  gv_dat into gv_datout <b>separated by space.</b>
concatenate 'Time :  '  gv_out into gv_timout separated by space.

concatenate gv_datout gv_timout into <b>gv_mes</b>. <b>separated by ' '</b> .

Regards,

Santosh

Message was edited by:

Santosh Kumar Patha

Former Member
0 Kudos

check with below link :

Thanks

Seshu