<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Strings longer than the editor window in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807090#M41432</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess you can use: (That is use ampersand character to concatenate literals)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;myString = 'abcdefghijklmnopqr' &amp;amp;
'stuxwyz' .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Nov 2004 14:20:28 GMT</pubDate>
    <dc:creator>ssimsekler</dc:creator>
    <dc:date>2004-11-04T14:20:28Z</dc:date>
    <item>
      <title>Strings longer than the editor window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807087#M41429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to define a char variable and fill it with a string&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: myString type CHAR255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;myString = 'ashgdfhgashdf dhfghasdf sd hdsf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the editor automatically makes a linefeat and shows an error if i want to aktivate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;editor makes something like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;myString = 'ashgdfhgashdf dhfghasdf&lt;/P&gt;&lt;P&gt; sd hdsf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i insert a sign or something else to write strings longer than about 80 chars??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mfg Markus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Nov 2004 10:31:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807087#M41429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-11-04T10:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Strings longer than the editor window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807088#M41430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Markus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Up to 4.6 the editor is limited to 72 char. But you can use the CONCATENATE statement to accomplish this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Nov 2004 10:35:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807088#M41430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-11-04T10:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Strings longer than the editor window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807089#M41431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are able to write the entire string in a single line, you can do something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mystring = &lt;/P&gt;&lt;P&gt;'ldkfjldskjfsldfkjdslfkjdslfkjdsfdsf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, I think you will need to use concatenate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mystring = 'part1 of text'.&lt;/P&gt;&lt;P&gt;CONCATENATE mystring 'part2 of text'&lt;/P&gt;&lt;P&gt;INTO mystring.&lt;/P&gt;&lt;P&gt;CONCATENATE mystring 'part3 of text'&lt;/P&gt;&lt;P&gt;INTO mystring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many times as needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Nov 2004 10:37:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807089#M41431</guid>
      <dc:creator>VXLozano</dc:creator>
      <dc:date>2004-11-04T10:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Strings longer than the editor window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807090#M41432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess you can use: (That is use ampersand character to concatenate literals)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;myString = 'abcdefghijklmnopqr' &amp;amp;
'stuxwyz' .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Nov 2004 14:20:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807090#M41432</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2004-11-04T14:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Strings longer than the editor window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807091#M41433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Markus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might know this already but still try changing the user specific settings of the Editor. Just uncheck the default length 72.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;Zubair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2004 09:46:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-longer-than-the-editor-window/m-p/807091#M41433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-11-17T09:46:26Z</dc:date>
    </item>
  </channel>
</rss>

