<?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: Read Comment box Data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413748#M1048704</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;are you using CL_GUI_TEXTEDIT to display the comment box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if so use the method&lt;/P&gt;&lt;P&gt;GET_TEXT_AS_R3TABLE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Sep 2008 15:05:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-02T15:05:17Z</dc:date>
    <item>
      <title>Read Comment box Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413746#M1048702</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 am working on Screens.I have created a Comment box with the Customer Container.&lt;/P&gt;&lt;P&gt;Its coming perfectly.&lt;/P&gt;&lt;P&gt;I entered some text with in that comment box.&lt;/P&gt;&lt;P&gt;I want to read the data which i entered with in that comment box.&lt;/P&gt;&lt;P&gt;I tried to use READ_TEXT function module.I am not able to read the data.&lt;/P&gt;&lt;P&gt;How can i read the the data from comment box.&lt;/P&gt;&lt;P&gt;Is there any function module or class for tat.&lt;/P&gt;&lt;P&gt;Please give me a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Swapna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 15:00:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413746#M1048702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T15:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Read Comment box Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413747#M1048703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for the comment box you need to define predefined values through which you can use READ_TEXT...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 15:01:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413747#M1048703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T15:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Read Comment box Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413748#M1048704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;are you using CL_GUI_TEXTEDIT to display the comment box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if so use the method&lt;/P&gt;&lt;P&gt;GET_TEXT_AS_R3TABLE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 15:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413748#M1048704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T15:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Read Comment box Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413749#M1048705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt; 

DATA: BEGIN OF STEXT OCCURS 200,
*       LINE(72),                                             
        LINE(78),                                             
      END OF ST

   CALL METHOD editor-&amp;gt;get_text_as_r3table
*        EXPORTING
*          ONLY_WHEN_MODIFIED     = FALSE
           IMPORTING
             table                  = stext[]
*          IS_MODIFIED            =
*        EXCEPTIONS
*          ERROR_DP               = 1
*          ERROR_CNTL_CALL_METHOD = 2
*          ERROR_DP_CREATE        = 3
*          POTENTIAL_DATA_LOSS    = 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.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;^Saquib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 15:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-comment-box-data/m-p/4413749#M1048705</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2008-09-02T15:16:38Z</dc:date>
    </item>
  </channel>
</rss>

