<?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_text fm in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060890#M725007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you maintain the text into SO10 than you don't have to read the text using the READ_TEXT. You can include that text directly into the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your text, chagne the Text type to I under the General Attributes. And then give the name of the text and other parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 25 Nov 2007 07:44:47 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2007-11-25T07:44:47Z</dc:date>
    <item>
      <title>read_text fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060889#M725006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my smart form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to include  some text &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we write a heading for main window(header)&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------" /&gt;&lt;P&gt;posnr material  descriptio----&lt;/P&gt;&lt;HR originaltext="--------------------" /&gt;&lt;P&gt;&amp;gt;  text to be included&lt;/P&gt;&lt;P&gt;_________________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or somethins like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ship-to-party (text to be included): value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this possible by maintaining all values in so10 ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;than reading in ur form by read_text fm  (that is passing ur interanal table filled with all values in form interface) and than we go to particular node and  include text and we process internal table values on basis on object id and particular line no and language.......my doubt is like if we have to do implementation in german&lt;/P&gt;&lt;P&gt;than do we need to include all text for german language as we did for english&lt;/P&gt;&lt;P&gt;and include all german text now in program instead of english language(so language should be an selection screen parameter)?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;moreover how to acess header data for any order in va03(header overview),item text(which appears for item details)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2007 07:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060889#M725006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-25T07:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: read_text fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060890#M725007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you maintain the text into SO10 than you don't have to read the text using the READ_TEXT. You can include that text directly into the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your text, chagne the Text type to I under the General Attributes. And then give the name of the text and other parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2007 07:44:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060890#M725007</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-25T07:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: read_text fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060891#M725008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CONCATENATE it_ekko-ebeln it_ekpo-ebelp INTO nmebeln.&lt;/P&gt;&lt;P&gt;      REFRESH tline.&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                      = 'F04'&lt;/P&gt;&lt;P&gt;          language                = sy-langu&lt;/P&gt;&lt;P&gt;          name                    = nmebeln&lt;/P&gt;&lt;P&gt;          object                  = 'EKPO'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          lines                   = tline&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;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT tline.&lt;/P&gt;&lt;P&gt;        IF tline-tdline IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;          del_text = tline-tdline.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        CONDENSE del_text.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Nov 2007 08:35:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060891#M725008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-25T08:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: read_text fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060892#M725009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SO WE GET TLINE AS TABLE WHICH HAS ALL VALUES(which maintains text)......NOW &lt;/P&gt;&lt;P&gt;TLINE HAS VALUES LIKE MATERIAL POSNR OBJNR BLA BLA....&lt;/P&gt;&lt;P&gt;we can display the respective values by writing in the nodes &lt;/P&gt;&lt;P&gt;the content of the work area......like we need to dislpay only material&lt;/P&gt;&lt;P&gt;than we write that particular content in that node.....and so on ....just wanted to confirm and similarly for german we pass language id as 'de'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 04:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-fm/m-p/3060892#M725009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T04:50:29Z</dc:date>
    </item>
  </channel>
</rss>

