<?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: String declaration in my program does not take more than 255 chars in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796765#M1466766</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please run this and let me know the result. You will have to scroll the output right.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report ztest message-id 00 line-size 520.

data: begin of itab occurs 0,
        tdline type tdline,
      end   of itab.

data: buffer type string.

itab-tdline = 'From the information contained in your message to us,'.
append itab.

itab-tdline = 'we conclude that this is a Consulting issue, and not a'.
append itab.

itab-tdline = 'product-related issue. The issue you have reported can'.
append itab.

itab-tdline = 'be solved using the online help, SAP Notes, WebEx '.
append itab.

itab-tdline = 'sessions, the knowledge database, and so on'.
append itab.

itab-tdline = 'To ensure that we can provide you and other customers '.
append itab.

itab-tdline = 'with the best support, and to reduce processing times,'.
append itab.

itab-tdline = 'we recommend that you check all of the information'.
append itab.

itab-tdline = 'available to you before opening a message.'.
append itab.

itab-tdline = 'We look forward to working with you again in the future'.
append itab.

loop at itab.
  concatenate buffer itab-tdline into buffer respecting blanks.
endloop.

condense buffer.

write: /001 buffer.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Apr 2010 19:22:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-22T19:22:22Z</dc:date>
    <item>
      <title>String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796753#M1466754</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 created a transportation schedule program which finally prints the output onto a smartform. There is a text editor box in the output from where the text eneterd is read onto the form. I decalred a variable as buffer where I concatenate all the text read line by line form the internal table having text and pass that onto the form which prints it. My problem is that even though I have several linesin the text box , it just collects only first few lines and after that it cuts of the lines. In debugging mode I saw a message when I tried increasing teh text in debugging mode , it siad only 255 chars are allowed, dont know why or wheer I am going wrong. PLease help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM print_sched .
  DATA:    ltp_func TYPE rs38l_fnam.   " Name of Function Module.
     LOOP AT TA_TLINE.
     CONCATENATE LTP_BUFFER TA_TLINE-TDLINE INTO LTP_BUFFER RESPECTING BLANKS .&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;Here
    ENDLOOP.
CONDENSE LTP_BUFFER.
  CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
      formname           = 'ZSD_TRANS_SCHED'
    IMPORTING
      fm_name            = ltp_func
    EXCEPTIONS
      no_form            = 1
      no_function_module = 2
      OTHERS             = 3.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  CALL FUNCTION ltp_func
    EXPORTING
      tp_vttk          = vttk
      tp_sname         = tp_sname
      tp_date          = oia05-schddt
      buffer           = ltp_buffer

    TABLES
      ita_transch      = ta_transch
    EXCEPTIONS
      formatting_error = 1
      internal_error   = 2
      send_error       = 3
      user_canceled    = 4
      OTHERS           = 5.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
ENDFORM.                    " PRINT_SCHED&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 14:57:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796753#M1466754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T14:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796754#M1466755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you try a search in SCN &lt;STRONG&gt;"Declare string more than 255 characters"&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Its discussed lots of times.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 16:23:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796754#M1466755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T16:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796755#M1466756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes , tahst correct , I did go through those posts but the problem with my thing is that while I am looping through the &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; LOOP AT TA_TLINE.
     CONCATENATE LTP_BUFFER TA_TLINE-TDLINE+0(48) INTO LTP_BUFFER RESPECTING BLANKS .
    ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here itself the ltp_buffer dosent take in all the texts, theer are  actually 9 lines of text in the ta_tline table, it concatenates only 5 lines and after that its not doing , so finally in lktp_buffer I am getting only half of teh text . I want to get all the text in that ltp_buffer but its not coming on here itself. I ahve passed this ltp_buffer itself in my smartform to print so it prints only half of te text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 16:38:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796755#M1466756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T16:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796756#M1466757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You say it won't take more than 255 characters, but you haven't provided the data declaration?? And you haven't said which function module is actually being called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Apr 21, 2010 2:16 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 18:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796756#M1466757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T18:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796757#M1466758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LTP_BUFFER type string. Thats is what I ahve declared and teh function module called is mentioned in the code above as mentioned , bsically its calling the smartforms and its FM. The problem is that its not concatinating all of the lines from the internal table ta_tline, only half of teh text is concatenated until 255 char. I wanted to know why is it not taking all of them present there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 20:47:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796757#M1466758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T20:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796758#M1466759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No - I meant - what is the value of ltp_func?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK - I see. It's your Smartform FM. How is this declared in that FM?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Apr 21, 2010 4:55 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 20:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796758#M1466759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T20:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796759#M1466760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you saying that the CONCATENATE doesn't work? If so, that's incorrect. It does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 21:32:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796759#M1466760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T21:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796760#M1466761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The FM works fine , teh concatenate also works fine but at the end of concatenation it shows up only 255 chars, even in debug mode if I try increasing it wont accept , I beleive its  declkared as string so maybe thats why but I have no idea how to do it the other way so that text of any lenght it takes can be concatenate dinto one and printed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 22:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796760#M1466761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T22:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796761#M1466762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; ... teh concatenate also works fine but at the end of concatenation it shows up only 255 chars,&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Which is it? does it work or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 13:00:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796761#M1466762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T13:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796762#M1466763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NO , it does not work , I meant it goes through the loop but at teh end of loop only 255 chars come in . So it does not take in all the text . I wnat all teh text to come in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT does not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 17:49:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796762#M1466763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T17:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796763#M1466764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So after:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT TA_TLINE.
  CONCATENATE LTP_BUFFER TA_TLINE-TDLINE INTO LTP_BUFFER RESPECTING BLANKS .&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;Here
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There are only 255 characters in LTP_BUFFER. Is that correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 17:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796763#M1466764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T17:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796764#M1466765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thast correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 19:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796764#M1466765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T19:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796765#M1466766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please run this and let me know the result. You will have to scroll the output right.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report ztest message-id 00 line-size 520.

data: begin of itab occurs 0,
        tdline type tdline,
      end   of itab.

data: buffer type string.

itab-tdline = 'From the information contained in your message to us,'.
append itab.

itab-tdline = 'we conclude that this is a Consulting issue, and not a'.
append itab.

itab-tdline = 'product-related issue. The issue you have reported can'.
append itab.

itab-tdline = 'be solved using the online help, SAP Notes, WebEx '.
append itab.

itab-tdline = 'sessions, the knowledge database, and so on'.
append itab.

itab-tdline = 'To ensure that we can provide you and other customers '.
append itab.

itab-tdline = 'with the best support, and to reduce processing times,'.
append itab.

itab-tdline = 'we recommend that you check all of the information'.
append itab.

itab-tdline = 'available to you before opening a message.'.
append itab.

itab-tdline = 'We look forward to working with you again in the future'.
append itab.

loop at itab.
  concatenate buffer itab-tdline into buffer respecting blanks.
endloop.

condense buffer.

write: /001 buffer.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 19:22:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796765#M1466766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T19:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796766#M1466767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes , it does show me the entire text till the end . This does bring in all the text , but I dont understnd why its not doing it my program . I have checked in debugging mode and it brings in just a part of the text not the whole text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 20:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796766#M1466767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T20:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796767#M1466768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suggest you do what I did. afterthe LOOP, WRITE the field. Make sure the report is wide enough to display the full width you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 20:06:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796767#M1466768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T20:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796768#M1466769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well I could have done that , but I am not writing the report in the output as such , instead when the program is run it outputs teh details and on left there is a text editor box where we input the text . This text is then saved and after that when we click on the print tab it reads teh text and copies this very text onto a Notes window in the smartform . I ahve checked the size of the Notes window and its large enough to take in double the text that I have entered , so there is no spacing issue at all , yet the entire text is not copied onto the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 20:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796768#M1466769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T20:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796769#M1466770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you going to do what I suggested??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 20:20:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796769#M1466770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T20:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796770#M1466771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure , Ill just do that right now in my report .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 20:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796770#M1466771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T20:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796771#M1466772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did that and ran the report , it still did not take in all the text , it says it can take only 255 units of the text for output . Half of the text were left behind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 20:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796771#M1466772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T20:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: String declaration in my program does not take more than 255 chars</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796772#M1466773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We're not looking at the SmartForm, just the output from the WRITE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 20:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-declaration-in-my-program-does-not-take-more-than-255-chars/m-p/6796772#M1466773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T20:31:02Z</dc:date>
    </item>
  </channel>
</rss>

