Application Development and Automation 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: 
Read only

Regarding line feed

Former Member
0 Likes
997

Hi experts,

I tryig for line feed in the Text file. I'm using CL_ABAP_CHAR_UTILITIES=>NEWLINE.

example

CONCATENATE lv_tmp_str

wa_notes-tdline

cl_abap_char_utilities=>cr_lf

INTO lv_tmp_str.

it showing error, the Class cl_abap_char_utilities UNKNOWN.

how to declare, please help

Vani

Hi experts,

I tryig for line feed in the Text file. I'm using CL_ABAP_CHAR_UTILITIES=>NEWLINE.

example

CONCATENATE lv_tmp_str

wa_notes-tdline

cl_abap_char_utilities=>cr_lf

INTO lv_tmp_str.

it showing error, the Class cl_abap_char_utilities UNKNOWN.

how to declare, please help

Vani

7 REPLIES 7
Read only

suresh_datti
Active Contributor
0 Likes
744

What version are you on? I believe this Class is available from 47 & higher versions only..

Did you try the hex value '00'?

Regards,

Suresh Datti

Read only

venkat_o
Active Contributor
0 Likes
744

Hello Vani,

<b>1</b>.

I tried without declaring .It is fine .no Syntax error.

<b>2</b>.

I believe that is related version.

Which SAP version u r using ? We are using Enterprise Version .It is ok

<b>Thanks,

Venkat.O</b>

Read only

Former Member
0 Likes
744

hi venkat,

the current versoin is 4.6C

Read only

0 Likes
744

then you cannot use that Class..Pl check this

Regards,

Suresh Datti

Read only

Former Member
0 Likes
744

Hi experts,

I'm not getting solution for this

need to disply the Tities for the PopUp screen, window screen, subscreens,... In Thai Language in Thai Login, But It was not displaying any thing including all the SAP standard screens. In debugging mode the sy-title is displaying but not in window title,

Other than the English Login, The titles is not Displaying

- I was checked in SE63, TRDIRT table, SNL3 transaction but of no Use

- Options I18N has been set with Thai and font

Any body had came across this.

so I want to know that any Gui patches have to install , or any setting have to be done ..

looking for your great help

Read only

Former Member
0 Likes
744

My code is like that.

eventhough I'm not getting newline in a file

Data: NEWLINE(2) TYPE X VALUE '0D0A'.

loop at it_zrcom into wa_zrcom.

Concatenate wa_zabc

wa_zdef

wa_zghi

NEWLINE

into v_conct.

endloop.

Message was edited by: Satya Vani

Message was edited by: Satya Vani

Read only

Former Member
0 Likes
744

Hi experts,

finally I got the line feed with your help

thanks a lot

Satya Vani.