<?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: problem with string dynamically created in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643972#M1284408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Explicitely control the length of your statements when generating them. In your sample you could code your program to create the follwoing lines:&lt;/P&gt;&lt;P&gt;tot = d1 + d2 + ........ + d8.&lt;/P&gt;&lt;P&gt;tot = tot + d9 + d100 ...... + d150.&lt;/P&gt;&lt;P&gt;tot = tot + d151 ..... d999.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And so on ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Volker&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 May 2009 07:36:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-08T07:36:48Z</dc:date>
    <item>
      <title>problem with string dynamically created</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643969#M1284405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have a problem a bit complex I don't know how to solve it: I have a dynamically created program that give a syntax error because a string created inside it is too long and don't stay on a single line, so the program created has some lines like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tot = d_1 + d_2 + d_3 + d_4 + d_5 + 
d_6 + d_7 +  d_8 + d_9 .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this code doesn't pass the syntax-check before it is executed and the error given is about the second line. So how can I avoid this error ? remember that the program is dynamically created so the code reported is for sample: it's possible to have more than 2 lines.&lt;/P&gt;&lt;P&gt;Thanks to anyone will give me an hint.&lt;/P&gt;&lt;P&gt;Gabriele&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 06:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643969#M1284405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T06:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: problem with string dynamically created</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643970#M1284406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ADD d_1 THEN d_2 UNTIL d_9 GIVING tot.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 06:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643970#M1284406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T06:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: problem with string dynamically created</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643971#M1284407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give some more explanation if possible..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 07:01:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643971#M1284407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T07:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: problem with string dynamically created</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643972#M1284408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Explicitely control the length of your statements when generating them. In your sample you could code your program to create the follwoing lines:&lt;/P&gt;&lt;P&gt;tot = d1 + d2 + ........ + d8.&lt;/P&gt;&lt;P&gt;tot = tot + d9 + d100 ...... + d150.&lt;/P&gt;&lt;P&gt;tot = tot + d151 ..... d999.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And so on ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Volker&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 07:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643972#M1284408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T07:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: problem with string dynamically created</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643973#M1284409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Can you modify this dynamically created program, &lt;/P&gt;&lt;P&gt;2) or can you change the program which creates this dynamic program?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 07:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643973#M1284409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T07:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem with string dynamically created</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643974#M1284410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks to all I solved by myself but I'll explain anyway what was wrong: the error was not due string too long but due a characters that was cut when filling the tab  containing the code of the report dynamically created (my fault)(d'oh) and because the system is old I was thinking that doesn't like line command on more line as I wrote above and the error shown did not give me more informations.&lt;/P&gt;&lt;P&gt;thanks to all and sorry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2009 08:43:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-string-dynamically-created/m-p/5643974#M1284410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-08T08:43:40Z</dc:date>
    </item>
  </channel>
</rss>

