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: 

I want to maintain comma in standard text using SO10.

Former Member
0 Kudos

Hi,

when i am using comma in standard text using SO10 then i am getting wrong text like <(>,<)>.

Can any body tell me what may be reason and how to print use comma in standard text.

Regards,

sandipan jena.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

After you retrieve the text using READ_TEXT,

replace all these unwanted charactersith null string.

Like, replace all '<(' with ''. into strng.

Regards,

Subramanian

8 REPLIES 8

Former Member
0 Kudos

Save Our Environment. Save Yourself.

Hi Sandipan,

I really don't understand your problem. You mean you want a standard text which includes a comma?

This can be done directly right?

For example: You can hev your text as

Hello, how r u?

You can have a comma directly this way. i tried the same and it worked fine.

Please correct me if I understood you incorrectly.

- I'm not an environmentalist. I'm an Earth warrior.

0 Kudos

Hi,

For Example if we are maintaining :

Hi, how r u?

then in my READ_TEXT i get ' Hi<(>,<)> how r u?.

Regards,

sandipan

0 Kudos

Hello,

Well then just replace the additional symbols


REPLACE ALL OCCURENCES OF '<(>' in t_lines-tdline with space.
condense t_lines-tdline.

Vikranth

Former Member
0 Kudos

Hi,

After you retrieve the text using READ_TEXT,

replace all these unwanted charactersith null string.

Like, replace all '<(' with ''. into strng.

Regards,

Subramanian

Former Member
0 Kudos

hi , if u are trying to bring single comma in sap scripts then it will allow in the editor but if u want two comma's then u can try using "<(>,<)>," . This u can try in the script editor itself no need to do it in S010.

regards

p244500
Active Contributor
0 Kudos

hi

normaly you can anytext in standard text (so10)


* for the defalt text
,,  (double comma) for the tab

ex: 

*  hello world

regard

nawa

Former Member

Try to switch the editor. I used the word editor (PC editor) embedded in SO10 and had the same problems with comma as you did. When I switched the editor via Goto -> Change Editor to Form Painter, I could see the wrong signs and delete them. Worked fine for me.

0 Kudos

This is the best answer.

Changing the editor shows the weird characters and after deletion it is working perfect.

Thank you very much