<?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: Data from text editor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865100#M48834</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;See if you can get access to eCATT. Use it to create a recording. It supports BDC for controls installed in user desktop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 12 Mar 2005 09:24:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-03-12T09:24:21Z</dc:date>
    <item>
      <title>Data from text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865098#M48832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Im trying to write a BDC for the PR05 transaction (create trip data). The screen has a 'Comments' tab that does not get recorded while executing the SHDB transaction. &lt;/P&gt;&lt;P&gt;I used the class C_TEXTEDIT_CONTROL to set the data from the comments tab into the R/3 table PCL1. The code looks like this -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: TEXT_LINE_LENGTH TYPE I VALUE 72.&lt;/P&gt;&lt;P&gt;DATA: TEXT_EDITOR TYPE REF TO C_TEXTEDIT_CONTROL.&lt;/P&gt;&lt;P&gt;DATA: TEXT_REPID LIKE SY-REPID value 'SAPMP56T'.&lt;/P&gt;&lt;P&gt;DATA: TEXT_CONTAINER(30) TYPE C VALUE 'EDITOR_TEXT'.&lt;/P&gt;&lt;P&gt;DATA: TEXT_CONTROL_DYNNR LIKE SY-DYNNR  VALUE '1315'.&lt;/P&gt;&lt;P&gt;DATA  : I_LINEITEM1 LIKE PTP71  OCCURS 3.&lt;/P&gt;&lt;P&gt;DATA : wa_lineitem LIKE PTP71.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move 'test comments' to wa_lineitem-EDITOR_TEXT.&lt;/P&gt;&lt;P&gt;append wa_lineitem to i_lineitem1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT TEXT_EDITOR&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    REPID                      = TEXT_REPID&lt;/P&gt;&lt;P&gt;    DYNNR                      = TEXT_CONTROL_DYNNR&lt;/P&gt;&lt;P&gt;    DYNPRO_CONTAINER           = TEXT_CONTAINER&lt;/P&gt;&lt;P&gt;    WORDWRAP_MODE              =&lt;/P&gt;&lt;P&gt;        C_TEXTEDIT_CONTROL=&amp;gt;WORDWRAP_AT_FIXED_POSITION&lt;/P&gt;&lt;P&gt;    WORDWRAP_POSITION          = TEXT_LINE_LENGTH&lt;/P&gt;&lt;P&gt;    WORDWRAP_TO_LINEBREAK_MODE =&lt;/P&gt;&lt;P&gt;        C_TEXTEDIT_CONTROL=&amp;gt;TRUE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   OTHERS = 1.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CH_SUBRC = SY-SUBRC.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call method text_editor-&amp;gt;set_text_as_r3table&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      table = I_LINEITEM1&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      others = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On executing the BDC, data is added to the PCL1 table, however, when I see the trip data through PR05 transaction, the comments tab is empty.&lt;/P&gt;&lt;P&gt;I think there is something wrong with the parameters I am passing for the constructor of the TEXT_EDITOR object but I'm unable to figure it out.&lt;/P&gt;&lt;P&gt;Would appreciate any ideas on how to go about this.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Mar 2005 23:14:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865098#M48832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-11T23:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Data from text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865099#M48833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think what you are learning is that BDC does NOT support controls like the textedit control.  Controls are supported at the frontend, for example, the GUI running on a PC, and because they require the GUI frontend to execute, they are not supported in BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your best bet is to try an find a BAPI to meet your needs.  You can use tran BAPI to search for an appropriate BAPI or maybe another SDNer can post which BAPI to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know how it goes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2005 00:15:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865099#M48833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-12T00:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data from text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865100#M48834</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;See if you can get access to eCATT. Use it to create a recording. It supports BDC for controls installed in user desktop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2005 09:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865100#M48834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-12T09:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Data from text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865101#M48835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes ECATT supports the Controls but executing an ECATT script requires a GUI frontend.  That implies a user invoking the script.  If you can live with that, go for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ECATT is available in 4.7 and can be installed in 4.6C via a support package.  You can access it via tran SECATT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Mar 2005 20:38:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865101#M48835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-12T20:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data from text editor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865102#M48836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;eCATT requires Web AS 6.20 upwards as a server system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can test function modules and TCD down to release 4.6C.&lt;/P&gt;&lt;P&gt;In that sense, you cannot "install" eCATT on a 4.6C system; eCATT connects to a 4.6C system via RFC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2005 16:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-from-text-editor/m-p/865102#M48836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-21T16:20:37Z</dc:date>
    </item>
  </channel>
</rss>

