<?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: Long Text --- 1000 characters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547463#M1073959</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;This is the code i have used in my report: &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Data definition***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;Data: begin of i_tab occurs 0,&lt;/P&gt;&lt;P&gt;              ........&lt;/P&gt;&lt;P&gt;              .......&lt;/P&gt;&lt;P&gt;              text  TYPE CACS_CHAR1000SF,&lt;/P&gt;&lt;P&gt;         end of i_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;field catalog***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  itb_fieldcat-fieldname = 'TEXT'.&lt;/P&gt;&lt;P&gt;  itb_fieldcat-seltext_l = 'POD Text'.&lt;/P&gt;&lt;P&gt;  itb_fieldcat-col_pos   = 35.&lt;/P&gt;&lt;P&gt;  itb_fieldcat-outputlen = 1000.&lt;/P&gt;&lt;P&gt;  itb_fieldcat-emphasize = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND itb_fieldcat TO itb_fieldcat.&lt;/P&gt;&lt;P&gt;  CLEAR itb_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM reading_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  gv_repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE ebeln INTO i_tab-ebeln FROM ekpo  WHERE matnr = i_tab-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  line_id     = 'BEST'.&lt;/P&gt;&lt;P&gt;  line_name   = i_tab-matnr.&lt;/P&gt;&lt;P&gt;  line_lang   = sy-langu.&lt;/P&gt;&lt;P&gt;  line_object = 'MATERIAL'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR i_tabs.&lt;/P&gt;&lt;P&gt;  REFRESH i_tabs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      id                      = line_id&lt;/P&gt;&lt;P&gt;      language                = line_lang&lt;/P&gt;&lt;P&gt;      name                    = line_name&lt;/P&gt;&lt;P&gt;      object                  = line_object&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lines                   = i_tabs&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      id                      = 1&lt;/P&gt;&lt;P&gt;      language                = 2&lt;/P&gt;&lt;P&gt;      name                    = 3&lt;/P&gt;&lt;P&gt;      not_found               = 4&lt;/P&gt;&lt;P&gt;      object                  = 5&lt;/P&gt;&lt;P&gt;      reference_check         = 6&lt;/P&gt;&lt;P&gt;      wrong_access_to_archive = 7&lt;/P&gt;&lt;P&gt;      OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT i_tabs.&lt;/P&gt;&lt;P&gt;    CONDENSE i_tabs-tdline.&lt;/P&gt;&lt;P&gt;    CONCATENATE: i_tab-text i_tabs-tdline INTO i_tab-text SEPARATED BY space.&lt;/P&gt;&lt;P&gt;    MODIFY i_tab TRANSPORTING text.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "reading_text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The text is still cutting off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Sep 2008 06:56:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-29T06:56:15Z</dc:date>
    <item>
      <title>Long Text --- 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547459#M1073955</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;&lt;/P&gt;&lt;P&gt;I have a  report that is using ALV and one of my fields has to display a long text description of a material. My client has asked me to make sure that at least 1000 characters are displayed for a long text description. I have tried to explaing to my client that only 132 character can be displayed but insisted that he desparately needs 1000 characters.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone advice me out on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Fred.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 03:58:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547459#M1073955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T03:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text --- 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547460#M1073956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use Dataelement CACS_CHAR1000SF.Is it Classical ALV?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 04:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547460#M1073956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T04:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text --- 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547461#M1073957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using plain ALV. I am not sure of the data element  you have sent me i have never used it before, may you sent me the sample code on how to use it? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 04:14:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547461#M1073957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T04:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text --- 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547462#M1073958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm Assuming The Term you used "Plain" ALV you meant classical one &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can give refrence of this datatype to your screen field.&lt;/P&gt;&lt;P&gt;data:text type CACS_CHAR1000SF.&lt;/P&gt;&lt;P&gt;and set the enough space for ptinting this 1000 char space.&lt;/P&gt;&lt;P&gt;make sure you are not using any line-size with your report statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 04:19:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547462#M1073958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T04:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text --- 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547463#M1073959</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;This is the code i have used in my report: &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Data definition***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;Data: begin of i_tab occurs 0,&lt;/P&gt;&lt;P&gt;              ........&lt;/P&gt;&lt;P&gt;              .......&lt;/P&gt;&lt;P&gt;              text  TYPE CACS_CHAR1000SF,&lt;/P&gt;&lt;P&gt;         end of i_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;field catalog***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  itb_fieldcat-fieldname = 'TEXT'.&lt;/P&gt;&lt;P&gt;  itb_fieldcat-seltext_l = 'POD Text'.&lt;/P&gt;&lt;P&gt;  itb_fieldcat-col_pos   = 35.&lt;/P&gt;&lt;P&gt;  itb_fieldcat-outputlen = 1000.&lt;/P&gt;&lt;P&gt;  itb_fieldcat-emphasize = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND itb_fieldcat TO itb_fieldcat.&lt;/P&gt;&lt;P&gt;  CLEAR itb_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM reading_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  gv_repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE ebeln INTO i_tab-ebeln FROM ekpo  WHERE matnr = i_tab-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  line_id     = 'BEST'.&lt;/P&gt;&lt;P&gt;  line_name   = i_tab-matnr.&lt;/P&gt;&lt;P&gt;  line_lang   = sy-langu.&lt;/P&gt;&lt;P&gt;  line_object = 'MATERIAL'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR i_tabs.&lt;/P&gt;&lt;P&gt;  REFRESH i_tabs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      id                      = line_id&lt;/P&gt;&lt;P&gt;      language                = line_lang&lt;/P&gt;&lt;P&gt;      name                    = line_name&lt;/P&gt;&lt;P&gt;      object                  = line_object&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lines                   = i_tabs&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      id                      = 1&lt;/P&gt;&lt;P&gt;      language                = 2&lt;/P&gt;&lt;P&gt;      name                    = 3&lt;/P&gt;&lt;P&gt;      not_found               = 4&lt;/P&gt;&lt;P&gt;      object                  = 5&lt;/P&gt;&lt;P&gt;      reference_check         = 6&lt;/P&gt;&lt;P&gt;      wrong_access_to_archive = 7&lt;/P&gt;&lt;P&gt;      OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT i_tabs.&lt;/P&gt;&lt;P&gt;    CONDENSE i_tabs-tdline.&lt;/P&gt;&lt;P&gt;    CONCATENATE: i_tab-text i_tabs-tdline INTO i_tab-text SEPARATED BY space.&lt;/P&gt;&lt;P&gt;    MODIFY i_tab TRANSPORTING text.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "reading_text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The text is still cutting off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 06:56:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547463#M1073959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T06:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text --- 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547464#M1073960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought you were using from Classical but you are doing with ALV Grid/list.&lt;/P&gt;&lt;P&gt;I'm sorry to say thats would not be possible with Grid/List.Max limit is 128 char.Reason I'm not sure.But you can refer few notes on same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OSS:910300,857823,959775&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 07:02:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547464#M1073960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T07:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Long Text --- 1000 characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547465#M1073961</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;How can i change this concept to classical? i have never used classical before but if it can solve my problem then i will go for it....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:47:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-1000-characters/m-p/4547465#M1073961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:47:08Z</dc:date>
    </item>
  </channel>
</rss>

